Help on decode

Hi,
I am trying out a where clause for forms which should satisfy the following condtions:
1.if the variable(:var) is null that is by default it should display all the records.
2.if the variable is selected then the rows should be selected which begin with the value of the variable.
I am giving an example and the queries below:
select * from emp where ename in
decode(:var,null,ename,(select ename from emp where ename like :var||'%'))
as above if :var is null then all the rows must be selected else the rows beginning with :var must be selected.
I encounter the followinf error:
ORA--01427:single-row subquery returns more than one row.
can any1 pls help me with the decode.
Thanks a heap
vinayak

SQL> variable v_var char
SQL>
SQL> begin
  2    :v_var:='A';
  3  end;
  4  /
PL/SQL procedure successfully completed.
SQL>
SQL> select empno, ename from emp
  2  where ename like :v_var||'%';
     EMPNO ENAME
      7499 ALLEN
      7876 ADAMS
SQL>
SQL> begin
  2    :v_var:=NULL;
  3  end;
  4  /
PL/SQL procedure successfully completed.
SQL>
SQL> select empno, ename from emp
  2  where ename like :v_var||'%';
     EMPNO ENAME
      7369 SMITH
      7499 ALLEN
      7521 WARD
      7566 JONES
      7654 MARTIN
      7698 BLAKE
      7782 CLARK
      7788 SCOTT
      7839 KING
      7844 TURNER
      7876 ADAMS
      7900 JAMES
      7902 FORD
      7934 MILLER
14 rows selected.
SQL>

Similar Messages

  • Help on Decode function in Toplink

    Hi,
    I have a sql statement like this:
    select field1, field2 from table1 where upper(field1) like 'ADELPHI%'
    order by field1,
    DECODE(TO_CHAR(NVL(LENGTH(TRANSLATE(field1,'A1234567890','A')),0)),'0',LPAD(field1 ,50),field1)
    How would I converted this to toplink query?
    I appreciate any help you guys can extend to me.

    I just spent about a half hour writing a response here, and the damned forum timed out on me. #$^!@$#!^!@$%.
    Here is the summary:
    - Using TL Expressions and EJBQL are to allow Java developers who don't necessarily know SQL to write queries and to facilitate portability/maintainability of the apps. For REALLY gnarly queries, using TL Expressions or EJBQL won't buy you this. I.e., SQL is more expressive and easier for this kind of quer, so it's not easier to use, and frankly with the code needed to support it, it won't be easier to maintain or port... Bottom line, maybe SQL is the best option here?
    - If you want to experiment, search for TO_CHAR on this forum, and the decode function in the javadoc. You need to build the expressions in pieces and you can treat expressions as arguments to other expressions -- in other words, you can build an expression like builder.leftPad(50, builder.get("field1")) and use it as one of the key/values in the hashtable to the decode function (in theory).
    - Don

  • Need help on decode statement

    I had the table as follows :
    ITEMCODE TEDCODE AMOUNT
    AAAA BED 12345
    AAAA EDU CESS 1234
    AAAA SHECESS 123
    AAAA CST 3% 12456
    AND SO ON.
    Now i want to convert the rows in Column heading TEDCODE to columns. But i want the specific rows like BED, EDU CESS, SHECESS in one column suppose EXCISE, and the other row i.e CST 3% in other column under heading TAX.
    Please help me how i can do it using Decode statement.

    SQL> create table t (itemcode varchar(4),tedcode varchar(10),amount number);
    Table created.
    SQL> insert into t values('AAAA','BED',12345);
    1 row created.
    SQL> insert into t values('AAAA','EDU CESS',1234);
    1 row created.
    SQL> insert into t values('AAAA','SHECESS',123);
    1 row created.
    SQL> insert into t values('AAAA','CST 3%',12456);
    1 row created.
    SQL> select itemcode, tedcode,decode(tedcode,'CST 3%',null,amount) EXCISE, decod
    e(tedcode,'CST 3%',amount,null) TAX from t;
    ITEM TEDCODE    EXCISE                                          TAX
    AAAA BED        12345
    AAAA EDU CESS   1234
    AAAA SHECESS    123
    AAAA CST 3%                                                   12456

  • Help with Decode function

    Hello!!
    Can anyone please help me with the decode statement
    Table 1 Table2 Table3
    Id Id Code
    Volume Code
    For each of the codes in Table3 I need to find the corresponding Volume. Can I use decode in the select statement to this,
    Eg Code Volume
    ABC 20
    XYZ 10 etc etc.
    Thankyou all in advance.

    Your table structure is a little unclear from your post. I am assuming that what you posted was:
    Table 1
    Id
    Table2
    Id
    Code
    Table3
    Volume
    Code You can use decode if there are only a few values for table3. For example,
    SELECT table2.code,
    DECODE(table2.code,'ABC',10,'XYZ',20,'UNKNOWN') volume
    FROM table2
    or even
    SELECT code,DECODE(code,null,'NONE',
                      (SELECT volume FROM table3 where code=table2.code)) volume
    FROM table2However, the first will break, or at least be incorrect, if anyone adds a new code/volume pair, and is tedious if you have more than a few values. The second will likely be pretty slow if there are a large number of records in table3. The best solution would be to use a simple join rather than decode. Something like:
    SELECT table1.id, table2.code, table3.volume
    FROM table1, table2, table3
    WHERE table1.id = table2.id and
          table2.code = table3.code

  • Help with decode

    Let's call the field "xfieldx". It’s currently a char data type that either gets inputted as null or “y” meaning yes. The problem comes when the query counts the number of rows that have a non-null value. The sql is below
    sum(decode(xfieldx, null, 0, 'n', 0, 1)) as xfieldxCount
    still returns a char value and later, when subject to a numeric condition “>” it fails. I need to make sure that this count is occurring correctly. Any wisdom?

    Welcome to the forum!
    Whenever you have a question, please post a little sample data (CREATE TABLE and INSERT statements), and the results you have from that data, so that the people who want to help you can re-create the problem and test their ideas.
    If you have an existing query, post the complete query, point out where it's getting the wrong results, and explain how you'd get the right results in those places.
    Always say which version of Oracle you're uisng.
    Since this is your first post, I'll do some sample data for you:
    CREATE TABLE     table_x
    (       x_id     NUMBER (4)     PRIMARY KEY
    ,     xfieldx     VARCHAR2 (1)
    INSERT INTO table_x (x_id, xfieldx) VALUES (0, NULL);
    INSERT INTO table_x (x_id, xfieldx) VALUES (1, 'n');
    INSERT INTO table_x (x_id, xfieldx) VALUES (2, 'y');
    INSERT INTO table_x (x_id, xfieldx) VALUES (3, 'n');
    894540 wrote:Let's call the field "xfieldx". It’s currently a char data type that either gets inputted as null or “y” meaning yes. The problem comes when the query counts the number of rows that have a non-null value. The sql is below
    sum(decode(xfieldx, null, 0, 'n', 0, 1)) as xfieldxCount
    still returns a char value and later, when subject to a numeric condition “>” it fails. I need to make sure that this count is occurring correctly. Any wisdom?That DECODE doesn't return a CHAR; it returs a NUMBER, either 0 or 1. (You can't use SUM on a CHAR expression.) And it's guaranteed either 0 or 1, never NULL. If you're interested in how many of the rows have a non-NULL value, just use COUNT.
    The following query shows the difference:
    SELECT  SUM ( DECODE ( xfieldx
                         , NULL     , 0
                   , 'n'     , 0
                               , 1
             )               AS total_y
    ,       COUNT (xfieldx)          AS count_xfieldx
    FROM     table_x
    ;Output:
    `  TOTAL_Y COUNT_XFIELDX
             1             3This should work in any version of Oracle.
    What results are you trying to get?
    What are you trying to do with a > condition?

  • Need help on DECODE query

    Hi Experts,
    Please help me on the below requirement.
    I have a table STUDENT with the following data.
    sid s_code
    1    50    
    2    50
    3    C
    4    A
    4    40
    5    70
    5    90
    6    70I have a table MASTER with the following data.
    stud_code STUD_ABB_CODE
    40        NAF
    50        NRI
    60        CAM
    70        NAS
    80        RMA
    90        MAS It 's having nearly 500 codes.
    It's having only number codes not character codes.
    i.e. C , A,
    we have lot of codes but I have mentioned only few.
    If S_CODE is C then I have show CLOSED
    If S_CODE is A then I have show ACTIVE
    If S_CODE is ANY number(50,60,70,90)
    except C and A then I have to show STUD_ABB_CODE from MASTER table.The out put should be like thisdecode(s_code)
    sid s_code DECODE(s_code)
    1    50     NRI
    2    50     NRI
    3    C      CLOSED
    4    A      ACTIVE
    4    40     NAF
    5    70     NAS
    5    90     MAS
    6    70     NASI have tried the following query but it's not working please help me.
    select s_id,s_code,
             DECODE (s_code,
                        'A', 'ACTIVE',
                        'C', 'CLOSED',DECODE(s_code,(SELECT DISTINCT stud_code
                        FROM student,master
                        WHERE s_code = stud_code
                        (SELECT DISTINCT stud_abb_code
                        FROM student,master
                        WHERE s_code = stud_code
                        from student;

    Hi,
    You are probably the most persistand member of this forum.
    user9077483
    Handle: user9077483
    Status Level: Newbie
    Registered: Jan 30, 2010
    Total Posts: 262
    Total Questions: 136 (136 unresolved)
    You never ever got any of your 135 quesations answered and still you ask again question number 136.
    Whow.
    Maybe this will be the first question you get a correct answer, if so please mark it as sush and give point to the correct answer.
    You can solve the problem of the missing A and C in the master table by simply adding them to that table. If you do not want to modify the master table you can do the following:
    with student (sid, s_code) as
    select 1,    '50' from dual union all   
    select 2,    '50' from dual union all
    select 3,    'C'  from dual union all
    select 4,    'A'  from dual union all
    select 4,    '40' from dual union all
    select 5,    '70' from dual union all
    select 5,    '90' from dual union all
    select 6,    '70' from dual
    1 50  
    2 50  
    3 C   
    4 A   
    4 40  
    5 70  
    5 90  
    6 70  
    ,master (stud_code, stud_abb_code )as
    select '40',        'NAF' from dual union all
    select '50',        'NRI' from dual union all
    select '60',        'CAM' from dual union all
    select '70',        'NAS' from dual union all
    select '80',        'RMA' from dual union all
    select '90',        'MAS' from dual
    40   NAF  
    50   NRI  
    60   CAM  
    70   NAS  
    80   RMA  
    90   MAS  
    ,master_1 as
    select stud_code, stud_abb_code  from master union all
    select 'A', 'ACTIVE' FROM DUAL UNION ALL
    select 'C', 'CLOSED' FROM DUAL
    STUD_CODE STUD_ABB_CODE
    40        NAF          
    50        NRI          
    60        CAM          
    70        NAS          
    80        RMA          
    90        MAS          
    A         ACTIVE       
    C         CLOSED       
    SELECT
      A.SID
      ,A.S_CODE
      ,B.STUD_ABB_CODE
    FROM
      STUDENT A LEFT OUTER JOIN
      MASTER_1 B ON A.S_CODE = B.STUD_CODE
    ORDER BY
      1,3
    SID S_CODE STUD_ABB_CODE
      1 50     NRI          
      2 50     NRI          
      3 C      CLOSED       
      4 A      ACTIVE       
      4 40     NAF          
      5 90     MAS          
      5 70     NAS          
      6 70     NAS          
    8 rows selected Regards,
    Peter

  • Need help in DECODE?

    Hello, i would like to know if this can be done in decode?
    if sign(me - 537) = 1 then '> 18 '
    else if sign(me - 446) = 1 then '> 15 - 18'
    else if sign(me - 355) = 1 then '> 12 - 15'
    else if sign(me - 172) = 1 then '> 6 - 12'
    else if sign(me - 81) = 1 then '> 3 - 6'
    else if sign(me - 51) = 1 then '> 2 - 3'
    else '> 1 - 2'
    end if
    Any help is very much appreciated.

    Yes very much...
    SELECT DECODE(sign(:ME - 537),1,'> 18 ',
              DECODE(sign(:ME - 446),1,'> 15 - 18',
                   DECODE(sign(:ME - 355),1,'> 12 - 15',
                        DECODE(sign(:ME - 172),1,'> 6 - 12',
                             DECODE(sign(:ME - 81),1,'> 3 - 6',
                                  DECODE(sign(:ME - 51),1,'> 2 - 3','> 1 - 2')))))) VAL
      FROM DUALas others have stated CASE will be my option

  • Need help in decoding javascript tag for HTML5 output.

    Hello all,
    I am working on a project in Adobe captivate 7 64 bit which consists of around 500 slides with most of the slides being text and image. The problem I am facing is very unusual which I guess I am the first one to experience (as per my search on google and forums). So, after I publish my project the output works fine in html (local and online) BUT when I run index.html (i.e., HTML5 output) the course does not run and screen is blank.
    After spending a week on searching online and using the trail and error strategy I was able to find out that it was the URL text "F:\usrnew\purchase" placed in the the middle of the course which caused the whole damage. However the url was removed and the project was submitted.
    After spending some extra time I found out that the letter "\u" which is a javascript tag was causing the problem for the HTML5 output. I don't really know much about javascripting but found out that the tag can be decoded using some programming strategy. Now this is where my knowledge comes to a standby and needs a lift from you guys.
    Any ideas, help, knowledge sharing would be very helpful for me and all those who might face this issue in future.
    Looking forward for your views.
    Kind Regards,
    Mirza

    Voila! The issue is resolved.
    Solution: Change the single slash "\" to a double slash "\\".
    Cheers,
    Mirza

  • Can anyone help me decode this crash report please?

    My 2008 MacBook is becoming increasingly prone to crashing, and I wondered if this crash report from iMovie might contain a clue as to how serious the problem is, and the possible cause. I'd be very grateful for the advice of anyone who understands these things!
    Process:         iMovie [22307]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.4 (1635)
    Build Info:      iMovieApp-16350000~2
    App Item ID:     408981434
    App External ID: 3919357
    Code Type:       X86 (Native)
    Parent Process:  launchd [164]
    Date/Time:       2012-02-18 16:05:28.362 +0000
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  22  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000050000020
    VM Regions Near 0x50000020:
        shared memory          000000004ef7f000-000000004efa0000 [  132K] rw-/rw- SM=SHM 
    -->
        MALLOC_SMALL           0000000051000000-0000000051800000 [ 8192K] rw-/rwx SM=SHM 
    Application Specific Information:
    objc_msgSend() selector name: _fastCStringContents:
    RAD:Cancel complete.
    thumbnails starting: VM 1004.49 MB
    thumbnails done: VM 1009.02 MB
    thumbnails done: VM 1009.09 MB
    thumbnails done: VM 1012.74 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1018.48 MB
    RAD:Ingest cancelled
    thumbnails done: VM 1023.26 MB
    thumbnails done: VM 1049.84 MB
    RAD:Cancel complete.
    thumbnails done: VM 1029.82 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1080.96 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1097.87 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    objc[22307]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9250217f RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x925094e7 ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x92509356 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x9bb51a9c _DPSNextEvent + 678
    10  com.apple.AppKit                        0x9bb51306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.iMovieApp                     0x00044e47 0x1000 + 278087
    12  com.apple.AppKit                        0x9bb4d675 -[NSApplication run] + 911
    13  com.apple.AppKit                        0x9bde1261 NSApplicationMain + 1054
    14  com.apple.iMovieApp                     0x000031b3 0x1000 + 8627
    15  com.apple.iMovieApp                     0x00002a6e 0x1000 + 6766
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x993b2b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x9846ab11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x984696a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x00f04763 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9460c3ef TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9460c165 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9460bf76 TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9b333be6 0x9ad47000 + 6212582
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 4:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x9b455b7d 0x9ad47000 + 7400317
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x993b2b42 __select + 10
    1   com.apple.CoreFoundation                0x91b09ee5 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x9b80ef10 0x9ad47000 + 11304720
    2   com.apple.QuickTimeComponents.component          0x9b3a3d0d 0x9ad47000 + 6671629
    3   com.apple.QuickTimeComponents.component          0x9b80ee43 0x9ad47000 + 11304515
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    4   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 11:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.AVCHDPlugin                   0x335baf1f 0x333fc000 + 1830687
    4   com.apple.AVCHDPlugin                   0x335e84ea 0x333fc000 + 2016490
    5   com.apple.AVCHDPlugin                   0x335babbe 0x333fc000 + 1829822
    6   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    7   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 12:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33468e98 0x333fc000 + 446104
    4   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    5   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 13:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.DiscRecording                 0x99c170be DRWorkLoop::WorkLoop() + 274
    7   com.apple.DiscRecording                 0x99c16f95 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    8   com.apple.DiscRecording                 0x99c16d04 DRThreadObject::StartRoutine(DRThreadObject*) + 142
    9   com.apple.DiscRecording                 0x99c16c75 DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    10  libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIO                   0x993e2ed2 CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIO                   0x993d8a3d CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIOServices           0x0f4ae8ea CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIOServices           0x0f4a4b29 CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 16:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x997910f8 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 17:: QTKit: QTVisualContextImageProviderWorkLoop
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.QTKit                         0x9a046792 QTVisualContextImageProviderWorkLoop + 124
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 18:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 19:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 20:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 21:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libobjc.A.dylib                         0x99a60d47 objc_msgSend + 23
    1   com.apple.CoreFoundation                0x91a8bb8d CFStringGetCStringPtr + 781
    2   com.apple.CoreFoundation                0x91a9904a CFStringFindWithOptionsAndLocale + 410
    3   com.apple.CoreFoundation                0x91a98e9c CFStringFindWithOptions + 60
    4   com.apple.CoreFoundation                0x91aa55ca CFURLCreateStringByReplacingPercentEscapes + 1194
    5   com.apple.CoreFoundation                0x91aa6542 CFURLCreateStringByReplacingPercentEscapesUsingEncoding + 66
    6   com.apple.CoreFoundation                0x91aa649e URLPathToPOSIXPath + 46
    7   com.apple.CoreFoundation                0x91a9d34a CFURLCreateStringWithFileSystemPath + 1866
    8   com.apple.CoreFoundation                0x91a9cbed CFURLCopyFileSystemPath + 45
    9   com.apple.Foundation                    0x99729147 -[NSURL(NSURL) path] + 62
    10  com.apple.iLifeMediaBrowser             0x92862cee -[ILMediaObject setURL:] + 147
    11  com.apple.iLMBiTunesPlugin              0x08b93abf 0x8b8e000 + 23231
    12  com.apple.iLMBiTunesPlugin              0x08b90a29 0x8b8e000 + 10793
    13  com.apple.iLMBiTunesPlugin              0x08b93f71 0x8b8e000 + 24433
    14  com.apple.iLifeMediaBrowser             0x928945e0 -[ILMediaManager _performLoadData] + 216
    15  com.apple.iLifeMediaBrowser             0x92894351 -[ILMediaManager _loadDataThreaded] + 514
    16  com.apple.CoreFoundation                0x91b1db6d __invoking___ + 29
    17  com.apple.CoreFoundation                0x91b1daa9 -[NSInvocation invoke] + 137
    18  com.apple.Foundation                    0x9985761a -[NSInvocationOperation main] + 267
    19  com.apple.Foundation                    0x9977237b -[__NSOperationInternal start] + 1177
    20  com.apple.Foundation                    0x99771edb -[NSOperation start] + 67
    21  com.apple.Foundation                    0x9978602e ____NSOQSchedule_block_invoke_2 + 135
    22  libdispatch.dylib                       0x98468e11 _dispatch_call_block_and_release + 15
    23  libdispatch.dylib                       0x98469e70 _dispatch_worker_thread2 + 231
    24  libsystem_c.dylib                       0x963fcb24 _pthread_wqthread + 346
    25  libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 23:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 26:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x993b2bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x963af7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x963af558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9bd98c1e -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    5   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 crashed with X86 Thread State (32-bit):
      eax: 0x0a208390  ebx: 0x00000000  ecx: 0x9c533270  edx: 0x50000000
      edi: 0x00000000  esi: 0x91a8b88e  ebp: 0xb0101828  esp: 0xb0101808
       ss: 0x0000001f  efl: 0x00010206  eip: 0x99a60d47   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x50000020
    Logical CPU: 1
    Binary Images:
        0x1000 -   0x441feb  com.apple.iMovieApp (9.0.4 - 1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x502000 -   0x519fe7  com.apple.iLifeFaceRecognition (1.0 - 21.1) <AFB95F66-06DF-8076-94EE-19B1BAE836FC> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x528000 -   0x5b2ff7  com.apple.mobiledevice (503.2 - 503.2) <F50D6D27-E18C-282A-398A-5A55A90B12C6> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
      0x5fa000 -   0x635fe7  com.apple.MPEG2TSDecoder (1.0 - 84) <A0150F28-CB98-7C59-4514-80CE7A58B600> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x673000 -   0x674ffb  com.apple.Helium (3.0.2 - 234) <723972E4-0FBB-4135-980E-15E8A40C11FF> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x679000 -   0x67aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x680000 -   0x71fff3  com.apple.MobileMe (11 - 1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iMovie.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0x77c000 -   0x829ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x86e000 -   0x86ffff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x873000 -   0x898ff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x89f000 -   0x8d3fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x8d9000 -   0xa40fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xa44000 -   0xa67ffc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
      0xa75000 -   0xc02ffb  com.apple.Helium.HeliumRender (2.0.2 - 234) <461D47A8-54FA-BB4F-F3E4-FD80C7ADC894> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xf00000 -   0xf30ff7  com.apple.FWAVCPrivate (52.47 - 47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0xf84000 -   0xfb1ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xff3000 -   0xff6ff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x31a5000 -  0x3312ffc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3346000 -  0x343dffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x3474000 -  0x34ccfff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3521000 -  0x3523fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1083) <114A418A-D35E-3859-9CF2-43A8EBEE5223> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3528000 -  0x352bffe  com.apple.DirectoryServicesSource (1.2 - 1083) <0986E1F9-47D8-3E90-BAA1-702336BB0371> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3531000 -  0x3537fff  com.apple.AddressBook.LDAPSource (1.2 - 1083) <5D6185FA-8E19-3926-B687-078E5AB0D4F4> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
    0x399d000 -  0x3df2ff7  com.apple.driver.AppleIntelGMAX3100GLDriver (7.0.52 - 7.0.0) <5187FA1B-C47C-3AAA-9FCB-E68464DE648A> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x5596000 -  0x55d5fff  com.apple.ExchangeSource (1.2 - 1083) <4E60AD70-A474-3D9A-B424-219A0CC02D55> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
    0x5610000 -  0x566bfff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <B5CA94A3-383B-371A-BB8C-F7142EB4FF6B> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x574f000 -  0x5756ff5  com.apple.iLMBAperturePlugin (2.6.2 - 288.2.12) <A9882D14-D1F2-3724-A486-DAD561ECF2E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x575d000 -  0x575dfff  com.apple.iLMBAppDefPlugin (2.6.2 - 288.2.12) <13748A1D-487A-3815-94A7-E5342AD254DC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x887c000 -  0x8885ffc  com.apple.iLMBFinalCutPlugin (2.6.2 - 288.2.12) <AB6A3216-4F2D-344C-BBA8-69DA7273D699> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x888b000 -  0x888cfff  com.apple.iLMBFolderPlugin (2.6.2 - 288.2.12) <E9F003F7-D978-3E7A-A15D-04BABB025F09> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x8891000 -  0x8892ff7  com.apple.iLMBMoviesFolderPlugin (2.6.2 - 288.2.12) <198BA9E9-5FE6-3747-AA19-90DC344730E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x88bc000 -  0x88bffff  com.apple.iLMBGarageBandPlugin (2.6.2 - 288.2.12) <011958D7-5E85-3820-8BF1-29D5082F9B05> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x88c5000 -  0x88d0ff3  com.apple.iLMBiMoviePlugin (2.6.2 - 288.2.12) <3A7C1FA1-8F5D-3620-B8EA-9093323D8388> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x88d7000 -  0x88d9ff8  com.apple.iLMBPhotoBooth2Plugin (2.6.2 - 288.2.12) <F197CF53-0EE3-32F9-9539-47C2FCEA7224> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x88e7000 -  0x88efff3  com.apple.iLMBiPhotoPlugin (2.6.2 - 288.2.12) <F4057373-3E0F-3E7C-A65E-C204B6E1018E> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x88f6000 -  0x88f7ff7  com.apple.iLMBPhotoBoothPlugin (2.6.2 - 288.2.12) <078CF428-0527-355B-8BB1-90E83C7F5EC0> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x8b73000 -  0x8b86ff7  com.apple.iLMBiPhoto8Plugin (2.6.2 - 288.2.12) <E539BF4E-56CA-3B20-94B7-F12ABCAA7BB6> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x8b8e000 -  0x8b96ff3  com.apple.iLMBiTunesPlugin (2.6.2 - 288.2.12) <8547E357-96D5-3D8F-8423-B49376A77FFE> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x8d00000 -  0x8e55ff9  com.apple.iLMBAperture31Plugin (2.6.2 - 288.2.12) <817A3E85-B1D7-3430-BFF5-AA3E529ACA41> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x8e9d000 -  0x8ff5ff9  com.apple.iLMBiPhoto9Plugin (2.6.2 - 288.2.12) <7F6D66BF-6A80-3FBA-B02F-13AD7D185843> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x903d000 -  0x90edfff  com.apple.iTunesAccess (10.5.3 - 10.5.3) <16ED9ECE-172C-D221-E50F-405A1DD78CC7> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9cee000 -  0x9cf2ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x9d5b000 -  0x9d5dffe +com.lemkesoft.GraphicConverterCMI (2.0 - 1.7) <2615990C-34B4-C411-C9CE-753796BB4A19> /Users/USER/Library/Contextual Menu Items/GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
    0x9de6000 -  0x9de6ff3 +cl_kernels (??? - ???) <DF659A0D-FD09-4513-BB44-79E90D1D489A> cl_kernels
    0x9dfa000 -  0x9dfbffb +cl_kernels (??? - ???) <D959D665-6936-43C7-A089-E17C3E232040> cl_kernels
    0x9f08000 -  0x9f09ff8 +cl_kernels (??? - ???) <43AB24A6-60BC-4CF5-A718-D7C8CF6C1379> cl_kernels
    0xa07d000 -  0xa082ff7  com.apple.iokit.SCSITaskLib (3.0.3 - 3.0.3) <4838E507-DD48-3026-A2BB-8C037A91F432> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0xa0a2000 -  0xa0acfe3  com.apple.AppleIntelGMAX3100VADriver (7.0.52 - 7.0.0) <1CD6AB54-2F52-3A86-89D8-14879C914F07> /System/Library/Extensions/AppleIntelGMAX3100VADriver.bundle/Contents/MacOS/App leIntelGMAX3100VADriver
    0xa0d5000 -  0xa0dcffe  com.apple.AppleGVAHW.component (1.0 - 1) <13BFEB64-0AD7-3ACE-94DA-806546212480> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xa0e2000 -  0xa0e7ffb  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <F3A640A6-52E4-3BE9-86A6-235A0ACD45C3> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xa0f4000 -  0xa0faffb  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <731DE928-8747-39A9-8C7A-E1017A4D1A07> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xacc3000 -  0xacc4ffc  com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn (4.0 - 4.0.3f12) <6AC8BCC4-40BA-3106-AD2B-5CF93D342631> /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Con tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0xb114000 -  0xb116ff4 +cl_kernels (??? - ???) <CE8F3C3A-AFC5-447A-BF6C-4D4063F2F4D0> cl_kernels
    0xb1d9000 -  0xb1e6ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <A61005C5-E6A4-84A6-2A85-38E53CFBD6AF> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xb5d0000 -  0xb5d5fe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <57256969-D8B2-3B02-9425-25E719AAF478> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xb5dc000 -  0xb5defff  libCoreFSCache.dylib (??? - ???) <17698E23-65F8-30AF-9C05-7E6172E52656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xb62c000 -  0xb62cffb +cl_kernels (??? - ???) <321E2581-1769-4B96-A247-D924034F4271> cl_kernels
    0xb62e000 -  0xb6cfff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0xb6e9000 -  0xb6eaff8 +cl_kernels (??? - ???) <B9AD480F-11F8-4189-BA15-4C84E8C75041> cl_kernels
    0xb766000 -  0xb787fe7  com.apple.AppleIntermediateCodec (2.0 - 542.4) <C71EE6F3-7B4D-38DA-B3D9-65B0AD4CE313> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xb7f8000 -  0xb7fafff  com.apple.podcastproducer.ImageDiffer (1.3 - 245) <073C136E-6E98-337D-B8D9-84664E84B9C5> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xc4e5000 -  0xc4fdff2  com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc699000 -  0xc85afe2 +net.telestream.wmv.advanced (2.3.8.1 - 2.3.8.1) <C77F8347-4BBF-D78E-EC6B-3ECA0F7C1B83> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xc89e000 -  0xc904fff  com.apple.AppleProResDecoder (3.0 - 542.6) <ABCA83B4-EBDA-3851-95F1-03ED201EBFDD> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0xc935000 -  0xc974ff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <4460AFFB-17DE-34F0-91C7-A2C90B817146> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xca37000 -  0xcb4dff3  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7D6AA57B-BA89-398A-8522-0D6D2106669E> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xcd06000 -  0xced2ff7  com.apple.audio.codecs.Components (2.2 - 2.2) <ACB95E1B-100E-36FE-BE0F-F2525946B5A8> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xcf31000 -  0xcf6aff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2315) <F2AFE0C1-1B5B-3A46-9A09-A2E04DCBE215> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xd0b4000 -  0xd441fe3  QuickTimeH264.scalar (??? - ???) <DBBBB79F-0E6B-3623-8BF8-261019F511ED> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0xd4bf000 -  0xd6b1ff2 +net.telestream.wmv.import (2.3.8.1 - 2.3.8.1) <21D9596D-BEE0-A591-F226-412C95FA21D4> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xe0d8000 -  0xe0fdfff  com.apple.QuartzComposer.ExtraPatches (4.0 - 236.3) <53682AE5-1424-3784-8AA2-E6F159ED4132> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xe10d000 -  0xe159ffb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <CBD34EBC-0FFD-34B4-B55A-BE1F61EF4BD8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xe17c000 -  0xe1a5fff  com.apple.audio.OpenAL (1.5.1 - 1.5.1) <66AB8BA7-6F8A-3D8C-9DAE-D82AF54139BB> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xe703000 -  0xe72aff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D7539881-9A0B-37CE-BB89-DAACF14ECEB4> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xe73d000 -  0xe747fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xea41000 -  0xea58fff  com.apple.podcastproducer.kit (2.0 - 245) <91640030-7867-3657-B6F6-2BF058D3546D> /System/Library/PrivateFrameworks/PodcastProducerKit.framework/PodcastProducerK it
    0xeb4f000 -  0xeb5eff2  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <65E0DBCA-1D6B-3AB7-ACDF-FBBF703E2BB8> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
    0xeb6b000 -  0xeb9cff2  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <DA7876AF-C4E2-3FC5-B582-52E65CD2011E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0xf052000 -  0xf0affff  com.apple.proapps.MIO (1.0.5 - 509) <DC6326C3-FDA8-3DA3-DFE9-FA268A017B82> /Applications/iMovie.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0xf0eb000 -  0xf125ff7  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311) <D88F358F-5971-3D0F-996F-B384501DA11E> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0xf140000 -  0xf14fff7  com.apple.MP4RADPlugin (1.1 - 507) <E4690B7C-C4E0-C7AC-3D52-07594DD6A58D> /Applications/iMovie.app/Contents/RADPlugins/MP4.RADPlug/Contents/MacOS/MP4
    0xf4a2000 -  0xf4ecffb  com.apple.CoreMediaIOServices (151.0 - 3232) <0C456E67-311F-3047-9F8E-FB0EAE567DED> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0xf76f000 -  0xf7c1ff3  com.apple.AppleVADriver (5.0.14 - 5.0.14) <1D768F51-833B-3A05-B8D3-7AE09EBB7BAE> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0xf7e7000 -  0xf860ff5  com.apple.frameworks.server.foundation (10.7.3 - 185.5) <383D3C16-C9AB-3306-BB26-71833365CDFE> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
    0xff7b000 -  0xffa4ffb  com.apple.cmio.DAL.VDC_4 (210.0 - 3180) <82CD4CB5-D357-35A4-A078-C221566D47D7> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC
    0xffae000 - 0x1000eff7  com.apple.CMIOQTUnits (210.0 - 3180) <A4EEAED2-DAE3-36AB-9CEE-49636A0A49B4> /System/Library/Frameworks/CoreMediaIO.framework/Resources/QuickTimeUnits/CMIOQ TUnits.bundle/Contents/MacOS/CMIOQTUnits
    0x1001e000 - 0x1004eff7  com.apple.FWAVC (201.47 - 47) <4B38E6AF-AC02-3D8F-8362-31100A74FCF4> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x1025c000 - 0x10284ff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2315) <E860A690-288A-30D1-8C30-09C17347C401> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1028c000 - 0x102a9fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <18F1CA40-D308-DD8B-D4EA-68442FED0C99> /Library/QuickTime/Google Camera Adapter 0.component/Contents/MacOS/Google Camera Adapter 0
    0x102b4000 - 0x102d1fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <B6DDC135-B99A-954C-C981-239B8A15265F> /Library/QuickTime/Google Camera Adapter 1.component/Contents/MacOS/Google Camera Adapter 1
    0x102dc000 - 0x10305ffb  com.apple.mio.DAL.VDC_4 (151.0 - 3232) <42F26626-7A26-399E-9CE6-FB5D9A5CE875> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x21878000 - 0x218c6ff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.1 - 2.7.1) <1D79F9C3-E0F4-33AE-A390-38DD884DEA28> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x218d0000 - 0x21944ff5  com.apple.frameworks.server.kit (10.7.2 - 171.5) <98C6CE24-3F76-3C66-A4F0-ACAC884B045F> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
    0x26ab7000 - 0x26ae2ff3  com.apple.iMovieQCPlugIns (1.1 - 1635) <A89F1B94-B061-1CD1-AEB9-F4F080BE9073> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x2ae62000 - 0x2afd6ff7  com.apple.CMIOUnits (210.0 - 3180) <787E53C3-8AAF-3202-98D2-741A4F4C0D1D> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Con tents/MacOS/CMIOUnits
    0x2ce7e000 - 0x2ce98fff +AdobeBIB (??? - ???) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBI B
    0x2e487000 - 0x2e64fff7  com.apple.MPEG2PSRADPlugin (1.2 - 425) <550615C1-A261-71B5-2F0A-28788703EF71> /Applications/iMovie.app/Contents/RADPlugins/MPEG2PS.RADPlug/Contents/MacOS/MPE G2PS
    0x333fc000 - 0x33a63feb  com.apple.AVCHDPlugin (1.0.3 - 416) <EE5E94D7-A159-E3A0-84E9-DF61FF8BBFFC> /Applications/iMovie.app/Contents/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
    0x3867a000 - 0x386b6fc7 +com.adobe.vcmenu (??? - 4.0.0.344) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/MacOS/ADFSMenu
    0x3e000000 - 0x3e044fff  com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.2 - 1.7.2) <44C7D574-F577-30B8-B74D-F2EF8A5A282A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe9d000 - 0x8fecfaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x900bbff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2315) <17DE2163-96B2-301F-BCF5-256D92CCF13F> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x900bc000 - 0x901d3fe9  com.apple.WebKit (7534.53 - 7534.53.11) <E6C70036-EDDD-368B-A865-349615BB0A89> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90209000 - 0x90432ffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90433000 - 0x90474ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <CAE102A7-EA5E-391C-A91F-A08071A68652> /usr/lib/libcurl.4.dylib
    0x90475000 - 0x9047fffc  com.apple.NSServerNotificationCenter (4.0 - 4.0) <027FD93B-7F9E-3853-843F-584759761970> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x90480000 - 0x904a9ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x904aa000 - 0x904acffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x904ad000 - 0x906f6ff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x906f7000 - 0x90aeaffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x90aeb000 - 0x90b21ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90b22000 - 0x90e50fff  com.apple.FinderKit (1.0.1 - 1.0.1) <5D4B0D33-C8FB-3E85-8B19-052B2A9B9918> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x90e51000 - 0x90edefe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90edf000 - 0x90eeaffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <92C8B5DE-ACAB-36DF-9CA8-F113A28C4B20> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90eeb000 - 0x90eecff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x90eed000 - 0x90ef7fff  com.apple.CoreBluetooth (100.7 - 1) <5E69FE35-47A1-3629-9031-B67DE01F90DE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x915b3000 - 0x915b4ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x915b5000 - 0x915e0fff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x915e1000 - 0x91668fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9167a000 - 0x9186fff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91870000 - 0x9192dff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9192e000 - 0x91933ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x91934000 - 0x9199cff3  com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9199d000 - 0x919a2ffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x919a3000 - 0x919f3ff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x919f4000 - 0x91a23ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x91a24000 - 0x91a3cff7  libexpat.1.dylib (7.2.0 - compatibility 7.0.0) <C7003CC0-28CA-3E04-9B9E-0A15138ED726> /usr/lib/libexpat.1.dylib
    0x91a3d000 - 0x91a3dfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91a80000 - 0x91c57fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91d14000 - 0x91d57ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x91d58000 - 0x91d6dff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91d6e000 - 0x91d71fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x91d72000 - 0x91dc2ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91dc3000 - 0x91dc7ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91dc8000 - 0x91e14ff2  com.apple.GraphKit (1.0.5 - 30) <B4B039E8-8C61-300C-9B4A-FA824AED5596> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
    0x91e15000 - 0x91e25ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x91e26000 - 0x91e26fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e27000 - 0x91e2fff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x91e30000 - 0x91e4dff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91e4e000 - 0x91e52ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91ec3000 - 0x92024ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92025000 - 0x920a1ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x920a2000 - 0x920b7fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x920b8000 - 0x9214dff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92150000 - 0x921b4fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x921b5000 - 0x921b5fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x921b6000 - 0x921d5fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x921d6000 - 0x921d6fff  libffi.dylib (??? - ???) <58A2AA81-461E-3581-9A8C-880A3BDA2D6A> /usr/lib/libffi.dylib
    0x921d7000 - 0x922ceff3  com.apple.PubSub (1.0.5 - 65.28) <D7F21FC5-FE39-3690-B996-F84764CBCFD5> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x922cf000 - 0x9232cffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9232d000 - 0x9238fffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92390000 - 0x923d0ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x923d1000 - 0x923defff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x923df000 - 0x92413ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x92448000 - 0x9248cff3  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <5F2FB135-3B53-3DA8-B7E1-90A0C5F42127> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9248d000 - 0x9248effd  com.apple.ServerInformation (1.0 - 1) <E964895E-8205-3406-8C9E-E312EA4C83F8> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x9248f000 - 0x9249cfff  com.apple.HelpData (2.1.2 - 72) <37D51522-EDED-38BC-9412-3224ED91A078> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x924dc000 - 0x924feffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x924ff000 - 0x924ffffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x92500000 - 0x92844ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92845000 - 0x92850fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x92851000 - 0x928d0ff7  com.apple.iLifeMediaBrowser (2.6.2 - 502.2.12) <A6253E92-F339-306D-9AC0-3CFAB169E8D0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x928d1000 - 0x928d2ffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x928d3000 - 0x928e3fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x928e4000 - 0x9293fff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92944000 - 0x92957ffc  com.apple.FileSync.framework (6.0.1 - 502.2) <B79DAE4B-3B1E-32D4-8BEC-F2C034C00B68> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x92958000 - 0x92a18ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92a19000 - 0x92a55ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92a56000 - 0x92a56fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-

    My 2008 MacBook is becoming increasingly prone to crashing, and I wondered if this crash report from iMovie might contain a clue as to how serious the problem is, and the possible cause. I'd be very grateful for the advice of anyone who understands these things!
    Process:         iMovie [22307]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.4 (1635)
    Build Info:      iMovieApp-16350000~2
    App Item ID:     408981434
    App External ID: 3919357
    Code Type:       X86 (Native)
    Parent Process:  launchd [164]
    Date/Time:       2012-02-18 16:05:28.362 +0000
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  22  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000050000020
    VM Regions Near 0x50000020:
        shared memory          000000004ef7f000-000000004efa0000 [  132K] rw-/rw- SM=SHM 
    -->
        MALLOC_SMALL           0000000051000000-0000000051800000 [ 8192K] rw-/rwx SM=SHM 
    Application Specific Information:
    objc_msgSend() selector name: _fastCStringContents:
    RAD:Cancel complete.
    thumbnails starting: VM 1004.49 MB
    thumbnails done: VM 1009.02 MB
    thumbnails done: VM 1009.09 MB
    thumbnails done: VM 1012.74 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1018.48 MB
    RAD:Ingest cancelled
    thumbnails done: VM 1023.26 MB
    thumbnails done: VM 1049.84 MB
    RAD:Cancel complete.
    thumbnails done: VM 1029.82 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1080.96 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1097.87 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    objc[22307]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9250217f RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x925094e7 ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x92509356 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x9bb51a9c _DPSNextEvent + 678
    10  com.apple.AppKit                        0x9bb51306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.iMovieApp                     0x00044e47 0x1000 + 278087
    12  com.apple.AppKit                        0x9bb4d675 -[NSApplication run] + 911
    13  com.apple.AppKit                        0x9bde1261 NSApplicationMain + 1054
    14  com.apple.iMovieApp                     0x000031b3 0x1000 + 8627
    15  com.apple.iMovieApp                     0x00002a6e 0x1000 + 6766
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x993b2b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x9846ab11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x984696a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x00f04763 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9460c3ef TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9460c165 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9460bf76 TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9b333be6 0x9ad47000 + 6212582
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 4:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x9b455b7d 0x9ad47000 + 7400317
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x993b2b42 __select + 10
    1   com.apple.CoreFoundation                0x91b09ee5 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x9b80ef10 0x9ad47000 + 11304720
    2   com.apple.QuickTimeComponents.component          0x9b3a3d0d 0x9ad47000 + 6671629
    3   com.apple.QuickTimeComponents.component          0x9b80ee43 0x9ad47000 + 11304515
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    4   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 11:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.AVCHDPlugin                   0x335baf1f 0x333fc000 + 1830687
    4   com.apple.AVCHDPlugin                   0x335e84ea 0x333fc000 + 2016490
    5   com.apple.AVCHDPlugin                   0x335babbe 0x333fc000 + 1829822
    6   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    7   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 12:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33468e98 0x333fc000 + 446104
    4   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    5   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 13:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.DiscRecording                 0x99c170be DRWorkLoop::WorkLoop() + 274
    7   com.apple.DiscRecording                 0x99c16f95 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    8   com.apple.DiscRecording                 0x99c16d04 DRThreadObject::StartRoutine(DRThreadObject*) + 142
    9   com.apple.DiscRecording                 0x99c16c75 DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    10  libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIO                   0x993e2ed2 CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIO                   0x993d8a3d CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIOServices           0x0f4ae8ea CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIOServices           0x0f4a4b29 CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 16:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x997910f8 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 17:: QTKit: QTVisualContextImageProviderWorkLoop
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.QTKit                         0x9a046792 QTVisualContextImageProviderWorkLoop + 124
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 18:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 19:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 20:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 21:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libobjc.A.dylib                         0x99a60d47 objc_msgSend + 23
    1   com.apple.CoreFoundation                0x91a8bb8d CFStringGetCStringPtr + 781
    2   com.apple.CoreFoundation                0x91a9904a CFStringFindWithOptionsAndLocale + 410
    3   com.apple.CoreFoundation                0x91a98e9c CFStringFindWithOptions + 60
    4   com.apple.CoreFoundation                0x91aa55ca CFURLCreateStringByReplacingPercentEscapes + 1194
    5   com.apple.CoreFoundation                0x91aa6542 CFURLCreateStringByReplacingPercentEscapesUsingEncoding + 66
    6   com.apple.CoreFoundation                0x91aa649e URLPathToPOSIXPath + 46
    7   com.apple.CoreFoundation                0x91a9d34a CFURLCreateStringWithFileSystemPath + 1866
    8   com.apple.CoreFoundation                0x91a9cbed CFURLCopyFileSystemPath + 45
    9   com.apple.Foundation                    0x99729147 -[NSURL(NSURL) path] + 62
    10  com.apple.iLifeMediaBrowser             0x92862cee -[ILMediaObject setURL:] + 147
    11  com.apple.iLMBiTunesPlugin              0x08b93abf 0x8b8e000 + 23231
    12  com.apple.iLMBiTunesPlugin              0x08b90a29 0x8b8e000 + 10793
    13  com.apple.iLMBiTunesPlugin              0x08b93f71 0x8b8e000 + 24433
    14  com.apple.iLifeMediaBrowser             0x928945e0 -[ILMediaManager _performLoadData] + 216
    15  com.apple.iLifeMediaBrowser             0x92894351 -[ILMediaManager _loadDataThreaded] + 514
    16  com.apple.CoreFoundation                0x91b1db6d __invoking___ + 29
    17  com.apple.CoreFoundation                0x91b1daa9 -[NSInvocation invoke] + 137
    18  com.apple.Foundation                    0x9985761a -[NSInvocationOperation main] + 267
    19  com.apple.Foundation                    0x9977237b -[__NSOperationInternal start] + 1177
    20  com.apple.Foundation                    0x99771edb -[NSOperation start] + 67
    21  com.apple.Foundation                    0x9978602e ____NSOQSchedule_block_invoke_2 + 135
    22  libdispatch.dylib                       0x98468e11 _dispatch_call_block_and_release + 15
    23  libdispatch.dylib                       0x98469e70 _dispatch_worker_thread2 + 231
    24  libsystem_c.dylib                       0x963fcb24 _pthread_wqthread + 346
    25  libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 23:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 26:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x993b2bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x963af7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x963af558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9bd98c1e -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    5   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 crashed with X86 Thread State (32-bit):
      eax: 0x0a208390  ebx: 0x00000000  ecx: 0x9c533270  edx: 0x50000000
      edi: 0x00000000  esi: 0x91a8b88e  ebp: 0xb0101828  esp: 0xb0101808
       ss: 0x0000001f  efl: 0x00010206  eip: 0x99a60d47   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x50000020
    Logical CPU: 1
    Binary Images:
        0x1000 -   0x441feb  com.apple.iMovieApp (9.0.4 - 1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x502000 -   0x519fe7  com.apple.iLifeFaceRecognition (1.0 - 21.1) <AFB95F66-06DF-8076-94EE-19B1BAE836FC> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x528000 -   0x5b2ff7  com.apple.mobiledevice (503.2 - 503.2) <F50D6D27-E18C-282A-398A-5A55A90B12C6> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
      0x5fa000 -   0x635fe7  com.apple.MPEG2TSDecoder (1.0 - 84) <A0150F28-CB98-7C59-4514-80CE7A58B600> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x673000 -   0x674ffb  com.apple.Helium (3.0.2 - 234) <723972E4-0FBB-4135-980E-15E8A40C11FF> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x679000 -   0x67aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x680000 -   0x71fff3  com.apple.MobileMe (11 - 1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iMovie.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0x77c000 -   0x829ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x86e000 -   0x86ffff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x873000 -   0x898ff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x89f000 -   0x8d3fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x8d9000 -   0xa40fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xa44000 -   0xa67ffc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
      0xa75000 -   0xc02ffb  com.apple.Helium.HeliumRender (2.0.2 - 234) <461D47A8-54FA-BB4F-F3E4-FD80C7ADC894> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xf00000 -   0xf30ff7  com.apple.FWAVCPrivate (52.47 - 47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0xf84000 -   0xfb1ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xff3000 -   0xff6ff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x31a5000 -  0x3312ffc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3346000 -  0x343dffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x3474000 -  0x34ccfff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3521000 -  0x3523fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1083) <114A418A-D35E-3859-9CF2-43A8EBEE5223> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3528000 -  0x352bffe  com.apple.DirectoryServicesSource (1.2 - 1083) <0986E1F9-47D8-3E90-BAA1-702336BB0371> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3531000 -  0x3537fff  com.apple.AddressBook.LDAPSource (1.2 - 1083) <5D6185FA-8E19-3926-B687-078E5AB0D4F4> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
    0x399d000 -  0x3df2ff7  com.apple.driver.AppleIntelGMAX3100GLDriver (7.0.52 - 7.0.0) <5187FA1B-C47C-3AAA-9FCB-E68464DE648A> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x5596000 -  0x55d5fff  com.apple.ExchangeSource (1.2 - 1083) <4E60AD70-A474-3D9A-B424-219A0CC02D55> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
    0x5610000 -  0x566bfff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <B5CA94A3-383B-371A-BB8C-F7142EB4FF6B> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x574f000 -  0x5756ff5  com.apple.iLMBAperturePlugin (2.6.2 - 288.2.12) <A9882D14-D1F2-3724-A486-DAD561ECF2E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x575d000 -  0x575dfff  com.apple.iLMBAppDefPlugin (2.6.2 - 288.2.12) <13748A1D-487A-3815-94A7-E5342AD254DC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x887c000 -  0x8885ffc  com.apple.iLMBFinalCutPlugin (2.6.2 - 288.2.12) <AB6A3216-4F2D-344C-BBA8-69DA7273D699> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x888b000 -  0x888cfff  com.apple.iLMBFolderPlugin (2.6.2 - 288.2.12) <E9F003F7-D978-3E7A-A15D-04BABB025F09> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x8891000 -  0x8892ff7  com.apple.iLMBMoviesFolderPlugin (2.6.2 - 288.2.12) <198BA9E9-5FE6-3747-AA19-90DC344730E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x88bc000 -  0x88bffff  com.apple.iLMBGarageBandPlugin (2.6.2 - 288.2.12) <011958D7-5E85-3820-8BF1-29D5082F9B05> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x88c5000 -  0x88d0ff3  com.apple.iLMBiMoviePlugin (2.6.2 - 288.2.12) <3A7C1FA1-8F5D-3620-B8EA-9093323D8388> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x88d7000 -  0x88d9ff8  com.apple.iLMBPhotoBooth2Plugin (2.6.2 - 288.2.12) <F197CF53-0EE3-32F9-9539-47C2FCEA7224> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x88e7000 -  0x88efff3  com.apple.iLMBiPhotoPlugin (2.6.2 - 288.2.12) <F4057373-3E0F-3E7C-A65E-C204B6E1018E> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x88f6000 -  0x88f7ff7  com.apple.iLMBPhotoBoothPlugin (2.6.2 - 288.2.12) <078CF428-0527-355B-8BB1-90E83C7F5EC0> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x8b73000 -  0x8b86ff7  com.apple.iLMBiPhoto8Plugin (2.6.2 - 288.2.12) <E539BF4E-56CA-3B20-94B7-F12ABCAA7BB6> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x8b8e000 -  0x8b96ff3  com.apple.iLMBiTunesPlugin (2.6.2 - 288.2.12) <8547E357-96D5-3D8F-8423-B49376A77FFE> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x8d00000 -  0x8e55ff9  com.apple.iLMBAperture31Plugin (2.6.2 - 288.2.12) <817A3E85-B1D7-3430-BFF5-AA3E529ACA41> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x8e9d000 -  0x8ff5ff9  com.apple.iLMBiPhoto9Plugin (2.6.2 - 288.2.12) <7F6D66BF-6A80-3FBA-B02F-13AD7D185843> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x903d000 -  0x90edfff  com.apple.iTunesAccess (10.5.3 - 10.5.3) <16ED9ECE-172C-D221-E50F-405A1DD78CC7> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9cee000 -  0x9cf2ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x9d5b000 -  0x9d5dffe +com.lemkesoft.GraphicConverterCMI (2.0 - 1.7) <2615990C-34B4-C411-C9CE-753796BB4A19> /Users/USER/Library/Contextual Menu Items/GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
    0x9de6000 -  0x9de6ff3 +cl_kernels (??? - ???) <DF659A0D-FD09-4513-BB44-79E90D1D489A> cl_kernels
    0x9dfa000 -  0x9dfbffb +cl_kernels (??? - ???) <D959D665-6936-43C7-A089-E17C3E232040> cl_kernels
    0x9f08000 -  0x9f09ff8 +cl_kernels (??? - ???) <43AB24A6-60BC-4CF5-A718-D7C8CF6C1379> cl_kernels
    0xa07d000 -  0xa082ff7  com.apple.iokit.SCSITaskLib (3.0.3 - 3.0.3) <4838E507-DD48-3026-A2BB-8C037A91F432> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0xa0a2000 -  0xa0acfe3  com.apple.AppleIntelGMAX3100VADriver (7.0.52 - 7.0.0) <1CD6AB54-2F52-3A86-89D8-14879C914F07> /System/Library/Extensions/AppleIntelGMAX3100VADriver.bundle/Contents/MacOS/App leIntelGMAX3100VADriver
    0xa0d5000 -  0xa0dcffe  com.apple.AppleGVAHW.component (1.0 - 1) <13BFEB64-0AD7-3ACE-94DA-806546212480> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xa0e2000 -  0xa0e7ffb  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <F3A640A6-52E4-3BE9-86A6-235A0ACD45C3> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xa0f4000 -  0xa0faffb  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <731DE928-8747-39A9-8C7A-E1017A4D1A07> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xacc3000 -  0xacc4ffc  com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn (4.0 - 4.0.3f12) <6AC8BCC4-40BA-3106-AD2B-5CF93D342631> /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Con tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0xb114000 -  0xb116ff4 +cl_kernels (??? - ???) <CE8F3C3A-AFC5-447A-BF6C-4D4063F2F4D0> cl_kernels
    0xb1d9000 -  0xb1e6ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <A61005C5-E6A4-84A6-2A85-38E53CFBD6AF> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xb5d0000 -  0xb5d5fe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <57256969-D8B2-3B02-9425-25E719AAF478> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xb5dc000 -  0xb5defff  libCoreFSCache.dylib (??? - ???) <17698E23-65F8-30AF-9C05-7E6172E52656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xb62c000 -  0xb62cffb +cl_kernels (??? - ???) <321E2581-1769-4B96-A247-D924034F4271> cl_kernels
    0xb62e000 -  0xb6cfff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0xb6e9000 -  0xb6eaff8 +cl_kernels (??? - ???) <B9AD480F-11F8-4189-BA15-4C84E8C75041> cl_kernels
    0xb766000 -  0xb787fe7  com.apple.AppleIntermediateCodec (2.0 - 542.4) <C71EE6F3-7B4D-38DA-B3D9-65B0AD4CE313> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xb7f8000 -  0xb7fafff  com.apple.podcastproducer.ImageDiffer (1.3 - 245) <073C136E-6E98-337D-B8D9-84664E84B9C5> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xc4e5000 -  0xc4fdff2  com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc699000 -  0xc85afe2 +net.telestream.wmv.advanced (2.3.8.1 - 2.3.8.1) <C77F8347-4BBF-D78E-EC6B-3ECA0F7C1B83> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xc89e000 -  0xc904fff  com.apple.AppleProResDecoder (3.0 - 542.6) <ABCA83B4-EBDA-3851-95F1-03ED201EBFDD> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0xc935000 -  0xc974ff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <4460AFFB-17DE-34F0-91C7-A2C90B817146> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xca37000 -  0xcb4dff3  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7D6AA57B-BA89-398A-8522-0D6D2106669E> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xcd06000 -  0xced2ff7  com.apple.audio.codecs.Components (2.2 - 2.2) <ACB95E1B-100E-36FE-BE0F-F2525946B5A8> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xcf31000 -  0xcf6aff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2315) <F2AFE0C1-1B5B-3A46-9A09-A2E04DCBE215> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xd0b4000 -  0xd441fe3  QuickTimeH264.scalar (??? - ???) <DBBBB79F-0E6B-3623-8BF8-261019F511ED> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0xd4bf000 -  0xd6b1ff2 +net.telestream.wmv.import (2.3.8.1 - 2.3.8.1) <21D9596D-BEE0-A591-F226-412C95FA21D4> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xe0d8000 -  0xe0fdfff  com.apple.QuartzComposer.ExtraPatches (4.0 - 236.3) <53682AE5-1424-3784-8AA2-E6F159ED4132> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xe10d000 -  0xe159ffb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <CBD34EBC-0FFD-34B4-B55A-BE1F61EF4BD8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xe17c000 -  0xe1a5fff  com.apple.audio.OpenAL (1.5.1 - 1.5.1) <66AB8BA7-6F8A-3D8C-9DAE-D82AF54139BB> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xe703000 -  0xe72aff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D7539881-9A0B-37CE-BB89-DAACF14ECEB4> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xe73d000 -  0xe747fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xea41000 -  0xea58fff  com.apple.podcastproducer.kit (2.0 - 245) <91640030-7867-3657-B6F6-2BF058D3546D> /System/Library/PrivateFrameworks/PodcastProducerKit.framework/PodcastProducerK it
    0xeb4f000 -  0xeb5eff2  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <65E0DBCA-1D6B-3AB7-ACDF-FBBF703E2BB8> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
    0xeb6b000 -  0xeb9cff2  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <DA7876AF-C4E2-3FC5-B582-52E65CD2011E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0xf052000 -  0xf0affff  com.apple.proapps.MIO (1.0.5 - 509) <DC6326C3-FDA8-3DA3-DFE9-FA268A017B82> /Applications/iMovie.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0xf0eb000 -  0xf125ff7  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311) <D88F358F-5971-3D0F-996F-B384501DA11E> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0xf140000 -  0xf14fff7  com.apple.MP4RADPlugin (1.1 - 507) <E4690B7C-C4E0-C7AC-3D52-07594DD6A58D> /Applications/iMovie.app/Contents/RADPlugins/MP4.RADPlug/Contents/MacOS/MP4
    0xf4a2000 -  0xf4ecffb  com.apple.CoreMediaIOServices (151.0 - 3232) <0C456E67-311F-3047-9F8E-FB0EAE567DED> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0xf76f000 -  0xf7c1ff3  com.apple.AppleVADriver (5.0.14 - 5.0.14) <1D768F51-833B-3A05-B8D3-7AE09EBB7BAE> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0xf7e7000 -  0xf860ff5  com.apple.frameworks.server.foundation (10.7.3 - 185.5) <383D3C16-C9AB-3306-BB26-71833365CDFE> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
    0xff7b000 -  0xffa4ffb  com.apple.cmio.DAL.VDC_4 (210.0 - 3180) <82CD4CB5-D357-35A4-A078-C221566D47D7> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC
    0xffae000 - 0x1000eff7  com.apple.CMIOQTUnits (210.0 - 3180) <A4EEAED2-DAE3-36AB-9CEE-49636A0A49B4> /System/Library/Frameworks/CoreMediaIO.framework/Resources/QuickTimeUnits/CMIOQ TUnits.bundle/Contents/MacOS/CMIOQTUnits
    0x1001e000 - 0x1004eff7  com.apple.FWAVC (201.47 - 47) <4B38E6AF-AC02-3D8F-8362-31100A74FCF4> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x1025c000 - 0x10284ff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2315) <E860A690-288A-30D1-8C30-09C17347C401> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1028c000 - 0x102a9fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <18F1CA40-D308-DD8B-D4EA-68442FED0C99> /Library/QuickTime/Google Camera Adapter 0.component/Contents/MacOS/Google Camera Adapter 0
    0x102b4000 - 0x102d1fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <B6DDC135-B99A-954C-C981-239B8A15265F> /Library/QuickTime/Google Camera Adapter 1.component/Contents/MacOS/Google Camera Adapter 1
    0x102dc000 - 0x10305ffb  com.apple.mio.DAL.VDC_4 (151.0 - 3232) <42F26626-7A26-399E-9CE6-FB5D9A5CE875> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x21878000 - 0x218c6ff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.1 - 2.7.1) <1D79F9C3-E0F4-33AE-A390-38DD884DEA28> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x218d0000 - 0x21944ff5  com.apple.frameworks.server.kit (10.7.2 - 171.5) <98C6CE24-3F76-3C66-A4F0-ACAC884B045F> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
    0x26ab7000 - 0x26ae2ff3  com.apple.iMovieQCPlugIns (1.1 - 1635) <A89F1B94-B061-1CD1-AEB9-F4F080BE9073> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x2ae62000 - 0x2afd6ff7  com.apple.CMIOUnits (210.0 - 3180) <787E53C3-8AAF-3202-98D2-741A4F4C0D1D> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Con tents/MacOS/CMIOUnits
    0x2ce7e000 - 0x2ce98fff +AdobeBIB (??? - ???) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBI B
    0x2e487000 - 0x2e64fff7  com.apple.MPEG2PSRADPlugin (1.2 - 425) <550615C1-A261-71B5-2F0A-28788703EF71> /Applications/iMovie.app/Contents/RADPlugins/MPEG2PS.RADPlug/Contents/MacOS/MPE G2PS
    0x333fc000 - 0x33a63feb  com.apple.AVCHDPlugin (1.0.3 - 416) <EE5E94D7-A159-E3A0-84E9-DF61FF8BBFFC> /Applications/iMovie.app/Contents/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
    0x3867a000 - 0x386b6fc7 +com.adobe.vcmenu (??? - 4.0.0.344) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/MacOS/ADFSMenu
    0x3e000000 - 0x3e044fff  com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.2 - 1.7.2) <44C7D574-F577-30B8-B74D-F2EF8A5A282A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe9d000 - 0x8fecfaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x900bbff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2315) <17DE2163-96B2-301F-BCF5-256D92CCF13F> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x900bc000 - 0x901d3fe9  com.apple.WebKit (7534.53 - 7534.53.11) <E6C70036-EDDD-368B-A865-349615BB0A89> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90209000 - 0x90432ffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90433000 - 0x90474ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <CAE102A7-EA5E-391C-A91F-A08071A68652> /usr/lib/libcurl.4.dylib
    0x90475000 - 0x9047fffc  com.apple.NSServerNotificationCenter (4.0 - 4.0) <027FD93B-7F9E-3853-843F-584759761970> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x90480000 - 0x904a9ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x904aa000 - 0x904acffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x904ad000 - 0x906f6ff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x906f7000 - 0x90aeaffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x90aeb000 - 0x90b21ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90b22000 - 0x90e50fff  com.apple.FinderKit (1.0.1 - 1.0.1) <5D4B0D33-C8FB-3E85-8B19-052B2A9B9918> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x90e51000 - 0x90edefe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90edf000 - 0x90eeaffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <92C8B5DE-ACAB-36DF-9CA8-F113A28C4B20> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90eeb000 - 0x90eecff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x90eed000 - 0x90ef7fff  com.apple.CoreBluetooth (100.7 - 1) <5E69FE35-47A1-3629-9031-B67DE01F90DE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x915b3000 - 0x915b4ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x915b5000 - 0x915e0fff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x915e1000 - 0x91668fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9167a000 - 0x9186fff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91870000 - 0x9192dff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9192e000 - 0x91933ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x91934000 - 0x9199cff3  com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9199d000 - 0x919a2ffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x919a3000 - 0x919f3ff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x919f4000 - 0x91a23ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x91a24000 - 0x91a3cff7  libexpat.1.dylib (7.2.0 - compatibility 7.0.0) <C7003CC0-28CA-3E04-9B9E-0A15138ED726> /usr/lib/libexpat.1.dylib
    0x91a3d000 - 0x91a3dfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91a80000 - 0x91c57fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91d14000 - 0x91d57ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x91d58000 - 0x91d6dff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91d6e000 - 0x91d71fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x91d72000 - 0x91dc2ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91dc3000 - 0x91dc7ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91dc8000 - 0x91e14ff2  com.apple.GraphKit (1.0.5 - 30) <B4B039E8-8C61-300C-9B4A-FA824AED5596> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
    0x91e15000 - 0x91e25ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x91e26000 - 0x91e26fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e27000 - 0x91e2fff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x91e30000 - 0x91e4dff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91e4e000 - 0x91e52ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91ec3000 - 0x92024ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92025000 - 0x920a1ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x920a2000 - 0x920b7fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x920b8000 - 0x9214dff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92150000 - 0x921b4fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x921b5000 - 0x921b5fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x921b6000 - 0x921d5fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x921d6000 - 0x921d6fff  libffi.dylib (??? - ???) <58A2AA81-461E-3581-9A8C-880A3BDA2D6A> /usr/lib/libffi.dylib
    0x921d7000 - 0x922ceff3  com.apple.PubSub (1.0.5 - 65.28) <D7F21FC5-FE39-3690-B996-F84764CBCFD5> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x922cf000 - 0x9232cffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9232d000 - 0x9238fffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92390000 - 0x923d0ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x923d1000 - 0x923defff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x923df000 - 0x92413ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x92448000 - 0x9248cff3  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <5F2FB135-3B53-3DA8-B7E1-90A0C5F42127> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9248d000 - 0x9248effd  com.apple.ServerInformation (1.0 - 1) <E964895E-8205-3406-8C9E-E312EA4C83F8> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x9248f000 - 0x9249cfff  com.apple.HelpData (2.1.2 - 72) <37D51522-EDED-38BC-9412-3224ED91A078> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x924dc000 - 0x924feffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x924ff000 - 0x924ffffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x92500000 - 0x92844ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92845000 - 0x92850fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x92851000 - 0x928d0ff7  com.apple.iLifeMediaBrowser (2.6.2 - 502.2.12) <A6253E92-F339-306D-9AC0-3CFAB169E8D0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x928d1000 - 0x928d2ffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x928d3000 - 0x928e3fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x928e4000 - 0x9293fff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92944000 - 0x92957ffc  com.apple.FileSync.framework (6.0.1 - 502.2) <B79DAE4B-3B1E-32D4-8BEC-F2C034C00B68> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x92958000 - 0x92a18ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92a19000 - 0x92a55ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92a56000 - 0x92a56fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-

  • Help for decode function

    Hi all,
    I want to use decode function in RTF template.
    I know i can use if statement to deal with it ,but if the conditions are over 3, if statement is not good choice.
    Here is the if condition statement
    <?if:answer='Y'?>Yes<?end if?> <?if:answer='N'?>No<?end if?>
    how can i translate this if statement to use decode function
    I tried to use the statement as below, but it doesn't work.
    <?xdofx:decode(:answer,Y,'YES',N,'NO')?>
    using this statement i got empty in this field.
    I appreciate any responds, thanks in advance.
    appcat

    Hi,
    it should work,coz there is no xsl equivalent for this function that i have seen on blogs,
    the syntax that i have got it from other xmlp blogs, sounds like you put correct syntax, try to give multiple conditions to check the result
    <?xdofx:decode(’xxx’,’bbb’,’ccc’,’xxx’,
    ’ddd’)?>
    srinuk

  • Help with Decode/Case

    Hello All,
    Can I use decode/case function within a decode function?
    {code}
    SELECT TO_CHAR (
              EDMS_STRAGG_WC (
                 DISTINCT DECODE (
                             eqs.attrib_code,
                             'PRODUCT_AUTHORIZATION',    'Authorization: '
                                                      || CASE eqs.qual_value
                                                            WHEN 'LIST'
                                                            THEN
                                                               (SELECT lookup_desc
                                                                  FROM edmsadm.edms_lookup
                                                                 WHERE     lookup_type =
                                                                              'PARTNER_AUTHORIZATION'
                                                                       AND lookup_code =
                                                                              eqls.list_value)
                                                            ELSE
                                                               (SELECT lookup_desc
                                                                  FROM edmsadm.edms_lookup
                                                                 WHERE     lookup_type =
                                                                              'PARTNER_AUTHORIZATION'
                                                                       AND lookup_code =
                                                                              eqs.qual_value)
                                                         END,
                             'PRODUCT_CERTIFICATION',    'Certification: '
                                                      || CASE eqs.qual_value
                                                            WHEN 'LIST'
                                                            THEN
                                                               eqls.list_value
                                                            ELSE
                                                               eqs.qual_value
                                                         END,
                             'PRODUCT_SPECIALIZATION',    'Specialization: '
                                                       || (SELECT lookup_desc
                                                             FROM edmsadm.edms_lookup
                                                            WHERE     lookup_type =
                                                                         'PARTNER_SPECIALIZATION'
                                                                  AND lookup_code =
                                                                         CASE eqs.qual_value
                                                                            WHEN 'LIST'
                                                                            THEN
                                                                               eqls.list_value
                                                                            ELSE
                                                                               eqs.qual_value
                                                                         END))))
              program_value
      FROM edms_qual_stg eqs, edms_qual_list_stg eqls
    WHERE     1 = 1
           AND eqs.qual_id = eqls.qual_id(+)
           AND eqs.req_id = 192647
           AND eqs.disc_line_id = 598631
           AND eqs.attrib_code IN
                  ('PRODUCT_CERTIFICATION',
                   'PRODUCT_AUTHORIZATION',
                   'PRODUCT_SPECIALIZATION');
    {code}
    Edms_qual_stg:
    AND_OR_CONDITION
    ATTRIBUTE_SOURCE
    ATTRIB_CODE
    CREATED_BY
    CREATED_DT
    DISC_LINE_ID
    END_DT
    EXCLUDE_INCLUDE
    GROUP_AND_OR_CONDITION
    GROUP_CODE
    MAX_VALUE
    MIN_VALUE
    MODIFIED_BY
    MODIFIED_DT
    QUAL_APPL_PRECEDENCE
    QUAL_ID
    QUAL_OPERATOR
    QUAL_TYPE
    QUAL_VALUE
    REQ_ID
    START_DT
    Edms_qual_list_stg:
    ATTRIBUTE_SOURCE
    ATTRIB_CODE
    CREATED_BY
    CREATED_DT
    END_DT
    INCLUDE_AFFILIATES
    INCLUDE_EXCLUDE
    LIST_VALUE
    MODIFIED_BY
    MODIFIED_DT
    PRIMARY_PARTY
    QUAL_ID
    QUAL_LIST_ID
    REFERENCE_ID
    START_DT
    Edms_lookup:
    CREATED_BY
    CREATED_DT
    DISPLAY_SEQ
    EDMS_LOOKUP_ID
    END_DATE
    LOOKUP_CODE
    LOOKUP_DESC
    LOOKUP_REFERENCE
    LOOKUP_TYPE
    MODIFIED_BY
    MODIFIED_DT
    START_DATE
    SELECT eqs.qual_id, eqs.disc_line_id, eqs.req_id, eqs.attrib_code, eqs.qual_value, eqls.list_value
      FROM edms_qual_stg eqs, edms_qual_list_stg eqls
    WHERE     1 = 1
           AND eqs.qual_id = eqls.qual_id(+)
           AND disc_line_id = 598631
           AND req_id = 192647
           AND eqs.attrib_code IN
                  ('PRODUCT_CERTIFICATION',
                   'PRODUCT_AUTHORIZATION',
                   'PRODUCT_SPECIALIZATION');
    7509575    598631    192647    PRODUCT_CERTIFICATION    LIST    GOLD
    7509575    598631    192647    PRODUCT_CERTIFICATION    LIST    SILVER
    7509576    598631    192647    PRODUCT_AUTHORIZATION    LIST    ATP - JOULEX PROVIDER ESCO
    7509576    598631    192647    PRODUCT_AUTHORIZATION    LIST    ATP - JOULEX PROVIDER IDENTIFY
    7509577    598631    192647    PRODUCT_SPECIALIZATION    LIST    ADVANCED SECURITY
    7509577    598631    192647    PRODUCT_SPECIALIZATION    LIST    EXPRESS FOUNDATION
    Required Output:
    Certification: GOLD, SILVER, Authorization: ATP - JOULEX PROVIDER ESCO, ATP - JOULEX PROVIDER IDENTIFY,  SPECIALIZATION: ADVANCED SECURITY, EXPRESS FOUNDATION.
    Thx
    Shank.

    Hi,
    Sure; a DECODE or CASE expression that returns a NUMBER can be used any place a NUMBER is expected, including within another DECODE or CASE expression.  A DECODE or CASE expression that returns a DATE can be used any place a DATE is expected, including within another DECODE or CASE expression.  A DECODE or CASE expression that returns a VARCHAR2 can be used almost any place a VARCHAR2 is expected.  (There a  couple of special situations where a string literal is absolutely required.)
    There are not many situations where you really need to do that, though.  It's usually simpler and more efficient to use a single CASE expression; nesting is rarely needed.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Simplify the problem as much as possible, so that it contains only enough to show the part you don't already know how to do.
    If you really need a user-defined function to show the problem, then include a CREATE FUNCTION statement, and explain what the function does.  Again, simplify: if the function isn't what you don't understand, post a problem that doesn't use the function.
    Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • Help with Decode/CASE function

    Can anyone provide some help or insight how can this be done.
    Senario:
    I have two parameters in my report.
    Paramerer_A and Parameter_B
    If I enter a value (XYZ) in Parameter_A and value (XYZ) in Parameter_B, I want the report to display ERROR and do not run.

    Hi
    It is not possible to have a use defined message come up based on the values of parameters but we can stop the workbook from executing.
    First of all, you will will need to make sure that both parameters are optional and then create your condition such that it will not run if both are populated, like this:
    (Item1 = :Parameter_A OR Item2 = :Parameter_B)
    AND NOT
    :Parameter_A IS NOT NULL AND :Parameter_B IS NOT NULL
    You can also put in a check parameter that controls whether A or B should be used, with a prompt like this: Use Parameter A or Parameter B? Enter A or B
    :Check_Parameter = 'A' AND Item1 = :Parameter_A
    OR
    :Check_Parameter = 'B' AND Item2 = :Parameter_B
    Best wishes
    Michael

  • Need help in decode statement to check condition

    Hi All,
    I have table emp with below structure
    empno
    work_phone_no
    Home_phone
    cell_phone
    For the employee if work_phone & Home Phone is null then in place of work_phone we need to send the cell_phone number.
    How to use the decode statement in this scenario to test for Home_phone
    condition in the select statement.
    select DECODE (work_phone_no,
    null, cell_phone_no,office_phone_no )
    from emp
    Thanks

    Hi,
    Given the data you posted:
    empno work_phone_no home_phone_no cell_phone_no
    1     null          80032108556   8003210855
    2     null          null          8003210000 and your requirement is
    "If work & Home nunbers are null then display cellhone number in place of workphone number "
    , then, as John said, you do not want the results you posted. You want:
    1 null       80032108556
    2 8003210000 null That is, on the first row, where empno=1, the work_phone_no is NULL because the home_phone_no is NOT NULL, and cell_phone_no is only to be shown when both of the other phone numbers are missing.
    To get the results above, use CASE:
    SELECT  empno
    ,       CASE
                WHEN  work_phone_no IS NULL
                  AND home_phone_no IS NULL
                THEN cell_phone_no
                ELSE work_phone_no
            END  AS work_phone_no
    ,       home_phone_no
    FROM    ...If you really do want the results you posted, then, as John said, use NVL.

  • Need help in DECODE statement

    I have a scenario like
    if account no is 0001 or 0002 or 0003 then account_flag <> 'Y'
    ELSE IF account no is 00009 then account_status <> 'Y'
    How to write DECODE statement for this in Where part of select statement
    Note: account_flag and account_status are 2 different columns in same table

    Hi,
    I assumed you mean to update the values?
    You can use case for that:
    MHO%xe> select * from same_table;
    ACCOU A A
    0001  N N
    0002  N N
    0003  N N
    0004  N N
    0005  N N
    0006  N N
    0007  N N
    0008  N N
    0009  N N
    0010  N N
    10 rijen zijn geselecteerd.
    Verstreken: 00:00:01.90
    MHO%xe> update same_table
      2  set    account_flag  = case when account_no in ('0001', '0002', '0003')
      3                              then 'Y'
      4                              else account_flag
      5                         end
      6  ,      account_status = case when account_no = '0009'
      7                              then 'Y'
      8                              else account_status
      9                         end;
    10 rijen zijn bijgewerkt.
    Verstreken: 00:00:00.15
    MHO%xe> commit;
    Commit is voltooid.
    Verstreken: 00:00:00.09
    MHO%xe> select * from same_table;
    ACCOU A A
    0001  Y N
    0002  Y N
    0003  Y N
    0004  N N
    0005  N N
    0006  N N
    0007  N N
    0008  N N
    0009  N Y
    0010  N N
    10 rijen zijn geselecteerd.
    Verstreken: 00:00:00.07
    MHO%xe> desc same_table
    Naam                                      Null?    Type
    ACCOUNT_NO                                         VARCHAR2(5)
    ACCOUNT_FLAG                                       VARCHAR2(1)
    ACCOUNT_STATUS                                     VARCHAR2(1)

  • Need help with DECODE function

    Hello,
    I am trying to use default within the decode function and every time I get a missing expression. I have searched everywhere and cant figure out what I'm doing wrong. Thanks
    select decode (request_id,0,'No files found', DEFAULT)

    Hi,
    Welcome to the forum!
    When you use a default value, the last argument to DECODE is the actual value you want as a default.
    For example:
    SELECT       ename
    ,       deptno
    ,       DECODE ( deptno
                 , 30     , 'Sales'
                      , 'All others'     -- Default value
                  )                 AS dname
    FROM      scott.emp
    ORDER BY  ename
    ;Output:
    ENAME          DEPTNO DNAME
    ADAMS              20 All others
    ALLEN              30 Sales
    BLAKE              30 Sales
    CLARK              10 All others
    FORD               20 All others
    JAMES              30 Sales
    JONES              20 All others
    KING               10 All others
    MARTIN             30 Sales
    MILLER             10 All others
    SCOTT              20 All others
    SMITH              20 All others
    TURNER             30 Sales
    WARD               30 Sales 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    If you can show the problem using commonly available tables (such as those in the scott schema) then you don't need to post any sample data; just the results and the explanation.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

Maybe you are looking for

  • AFS - ATP "T" Status Problem

    Hi All, We're having a problem with ATP checks ignoring stock assigned to status T - Temporarily assigned stock/requirements, and double-promising against any quantity that hasn't been yet allocated to R - Reserved or F - Fixed. For example, batch 00

  • Powerpivot for sharepoint error: Unable to refresh data for a data connection in the workbook

    Hello,  I have three errors when i try to use a simple powerpivot workbook published in sharepoint: (nothing on google has help me..) 1-Unable to refresh data for a data connection in the workbook. Try again or contact your system administrator. The

  • Errors in AlertLog, need you help.

    I often getting this error in the alert log file, after that the client connections start getting out of process memory errors. I consult ora-07445 look up tool at meta link but its a unrecognized error for it. Kindly help me out to resolve it. Fri J

  • Seeking Labview/C/C++/Linux/Telecom Test Automation Engineer in the Denver Area

    http://www.aircell.com/company/careers/senior-test-automation-engineer-0 The Senior Test Automation Engineer will be responsible for leading the development of test automation tools, selection of new test technologies, and automation of new and exist

  • Command for war file

    hi all, Can anybody tell me the command to build a .war file and what files should be included in a war file. Thanks and Regards neha