This is a show stopper

I am relatively new to PL/SQL scripting, trying to pull data from Oracle DB 11g through SQL*PLUS.
I am putting all the select items of the select query into ORACLE RECORD as defined below.
I am not putting the entire select query as it is quite long list of items.
Appreciate your help & Thank you in advance.
DECLARE
  file_dir varchar2(20) := '/usr/tmp2';
  file_name varchar2(20) := 'Emp_Data';
  file utl_file.file_type;
  cursor PnJD_cur is
   select query;
  emp_rec PnJD_cur%rowtype;
BEGIN
  OPEN PnJD_cur;
  WHILE TRUE
  LOOP
  FETCH PnJD_cur INTO emp_rec;
  EXIT WHEN PnJD_cur%NOTFOUND;
  file := utl_file.fopen(file_dir,file_name||'.csv','w');
  utl_file.put(file, emp_rec);
  utl_file.fclose(file);
  END LOOP;
  CLOSE PnJD_cur;
  dbms_output.put_line(file_name||'.csv');
END;
and execute the query & receive below error.
        emp_rec PnJD_cur%rowtype;
ERROR at line 125:
ORA-06550: line 125, column 10:
PLS-00402: alias required in SELECT list of cursor to avoid duplicate column
names
ORA-06550: line 125, column 10:
PL/SQL: Item ignored
ORA-06550: line 131, column 22:
PLS-00320: the declaration of the type of this expression is incomplete or
malformed
ORA-06550: line 131, column 2:
PL/SQL: SQL Statement ignored
ORA-06550: line 135, column 25:
PLS-00320: the declaration of the type of this expression is incomplete or
malformed
ORA-06550: line 135, column 2:
PL/SQL: Statement ignored
Thank you
Gaura

Here's an example from my library of examples, for creating CSV files based on a supplied query...
As sys user:
CREATE OR REPLACE DIRECTORY TEST_DIR AS '\tmp\myfiles'
GRANT READ, WRITE ON DIRECTORY TEST_DIR TO myuser
As myuser:
CREATE OR REPLACE PROCEDURE run_query(p_sql IN VARCHAR2
                                     ,p_dir IN VARCHAR2
                                     ,p_header_file IN VARCHAR2
                                     ,p_data_file IN VARCHAR2 := NULL) IS
  v_finaltxt  VARCHAR2(4000);
  v_v_val     VARCHAR2(4000);
  v_n_val     NUMBER;
  v_d_val     DATE;
  v_ret       NUMBER;
  c           NUMBER;
  d           NUMBER;
  col_cnt     INTEGER;
  f           BOOLEAN;
  rec_tab     DBMS_SQL.DESC_TAB;
  col_num     NUMBER;
  v_fh        UTL_FILE.FILE_TYPE;
  v_samefile  BOOLEAN := (NVL(p_data_file,p_header_file) = p_header_file);
BEGIN
  c := DBMS_SQL.OPEN_CURSOR;
  DBMS_SQL.PARSE(c, p_sql, DBMS_SQL.NATIVE);
  d := DBMS_SQL.EXECUTE(c);
  DBMS_SQL.DESCRIBE_COLUMNS(c, col_cnt, rec_tab);
  FOR j in 1..col_cnt
  LOOP
    CASE rec_tab(j).col_type
      WHEN 1 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
      WHEN 2 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_n_val);
      WHEN 12 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_d_val);
    ELSE
      DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
    END CASE;
  END LOOP;
  -- This part outputs the HEADER
  v_fh := UTL_FILE.FOPEN(upper(p_dir),p_header_file,'w',32767);
  FOR j in 1..col_cnt
  LOOP
    v_finaltxt := ltrim(v_finaltxt||','||lower(rec_tab(j).col_name),',');
  END LOOP;
  --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
  UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
  IF NOT v_samefile THEN
    UTL_FILE.FCLOSE(v_fh);
  END IF;
  -- This part outputs the DATA
  IF NOT v_samefile THEN
    v_fh := UTL_FILE.FOPEN(upper(p_dir),p_data_file,'w',32767);
  END IF;
  LOOP
    v_ret := DBMS_SQL.FETCH_ROWS(c);
    EXIT WHEN v_ret = 0;
    v_finaltxt := NULL;
    FOR j in 1..col_cnt
    LOOP
      CASE rec_tab(j).col_type
        WHEN 1 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_v_val);
                    v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
        WHEN 2 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_n_val);
                    v_finaltxt := ltrim(v_finaltxt||','||v_n_val,',');
        WHEN 12 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_d_val);
                    v_finaltxt := ltrim(v_finaltxt||','||to_char(v_d_val,'DD/MM/YYYY HH24:MI:SS'),',');
      ELSE
        DBMS_SQL.COLUMN_VALUE(c,j,v_v_val);
        v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
      END CASE;
    END LOOP;
  --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
    UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
  END LOOP;
  UTL_FILE.FCLOSE(v_fh);
  DBMS_SQL.CLOSE_CURSOR(c);
END;
This allows for the header row and the data to be written to seperate files if required.
e.g.
SQL> exec run_query('select * from emp','TEST_DIR','output.csv');
PL/SQL procedure successfully completed.
Output.csv file contains:
empno,ename,job,mgr,hiredate,sal,comm,deptno
7369,"SMITH","CLERK",7902,17/12/1980 00:00:00,800,,20
7499,"ALLEN","SALESMAN",7698,20/02/1981 00:00:00,1600,300,30
7521,"WARD","SALESMAN",7698,22/02/1981 00:00:00,1250,500,30
7566,"JONES","MANAGER",7839,02/04/1981 00:00:00,2975,,20
7654,"MARTIN","SALESMAN",7698,28/09/1981 00:00:00,1250,1400,30
7698,"BLAKE","MANAGER",7839,01/05/1981 00:00:00,2850,,30
7782,"CLARK","MANAGER",7839,09/06/1981 00:00:00,2450,,10
7788,"SCOTT","ANALYST",7566,19/04/1987 00:00:00,3000,,20
7839,"KING","PRESIDENT",,17/11/1981 00:00:00,5000,,10
7844,"TURNER","SALESMAN",7698,08/09/1981 00:00:00,1500,0,30
7876,"ADAMS","CLERK",7788,23/05/1987 00:00:00,1100,,20
7900,"JAMES","CLERK",7698,03/12/1981 00:00:00,950,,30
7902,"FORD","ANALYST",7566,03/12/1981 00:00:00,3000,,20
7934,"MILLER","CLERK",7782,23/01/1982 00:00:00,1300,,10
The procedure allows for the header and data to go to seperate files if required.  Just specifying the "header"
filename will put the header and data in the one file.
Adapt to output different datatypes and styles are required.

Similar Messages

  • Show stopper: can't import tiff files with camera raw adjustments

    For RAW NEF files (coming from a Nikon D80), Aperture doesn't pick up adjustments I've made in ACR (Adobe Camera Raw) when I import them, even though the .xmp "sidecar" files are sitting there in the folder next to the them. Do I have to do something to get Aperture to pay attention to the .xmp files?
    Similarly, Aperture doesn't read ACR adjustments I've made to TIFF files. I've read on the web that adjustments made to TIFF files cannot be stored in "sidecar" xmp files. That's clearly true since I don't see the .xmp files sitting next to my tiff files in my image directory -- but my ACR adjustments are stored when I reload the TIFF files in ACR.
    In any case, Aperture doesn't seem to recognize either RAW files with sidecar .xmp info, or TIFF files that have ACR adjustments baked in.
    This is a show stopper for me and I'd love to use Aperture for its 'Faces' functionality. Does anyone know a fix for this issue?
    Thanks!
    Raphe

    Thanks for the reply, Kirby
    the kind of conversion you are talking about is likely a pipe dream.
    I gave it a quick look myself just now. the .lrcat file that lightroom has isn't binary & looks just like a huge list of adjustment data for entries in the database. For example, the curves on one of my images looks like this:
    ToneCurve = { 0,
    0,
    37,
    38,
    93,
    148,
    167,
    223,
    255,
    255 },
    So it wouldn't be difficult to write a .lrcat > .xmp exporter (basically going back from one Lightroom database to many .xmp files) or a batch .xmp > .lrcat exporter (going from many .xmp files to one Lightroom database).
    Looking at the contents of Aperture's .aplibrary package, there's an xml record of all files entered in the database, and I found what looks like image edits in the 'versions' folder -- but unfortunately the edits are stored in a binary format.
    Oh well, I guess this is why Aperture is a bit faster than Lightroom -- but will make it very difficult to write a converter to get edits into Aperture. & unless Apple adds edit info to their .xmp sidecar exporter (Export Masters) & includes a batch mode.. we wont be able to get info out of Aperture. So, for the moment, this apparent lack of an open format keeps Aperture from being a professional tool imho, compare to Lightroom.
    ..but for me there's no reason to switch from ACR to Lightroom because there's no facial recognition, and the curve editing utility is better in ACR.
    Thanks for the comments, David.
    I'll be sticking with ACR/Bridge for now -- I'd rather not split my library -- & hope that Lightroom adds some facial recognition functionality
    Besides this, Aperture seems like a really nice product.
    Cheers,
    Raphe

  • Show-stopper How can I determine tab hierachy from ids in wwpob_page$

    I have application components published as portlets that depending on the particular page/tab combination perform various functions.
    I am able to get the page_url from my report components published as portlets through p_page_url.
    The URL obviously keeps track of which particular tab was last active
    page?_pageid=54,93,62,68,86,98
    I know the table wwpob_page$ contains these id values.
    I need to be able to determine how the tab hierachy is determined.
    Such that how one can determine which tabs can exist under a parent tab and so on based on the id.
    10 20 30 40 50
    55 58 44 48 64 68
    99 105 111 72 76
    I know I could "hard-code" id values to determine which particular tab I am currently on.
    I want to be able to use tab "friendly" names.
    select p.id, p.name, s.text
    from wwpob_page$ p, wwlns_strings$ s
    where p.title_id = s.id
    order by p.id asc
    My code needs to be robust enough so that if new tabs are added, I can still decipher the URL!!!
    Can someone also tell me how the URL is built and what determines the order of tab_ids?
    This is urgent and a show-stopper!
    kind regards,
    Matt.

    It's my fault, I lost you there.
    See I wrote the steps as they were in  "Adobe Help" so please forget about the last comment.
    I chose the "advanced mode" because I have more than one menu to filter (shape and color) 
    lets say I want the comments on my website to be displayed conditionaly, and I have two lists one for colors (blue and pink) and other for shapes (square and circle), 
    So I'm going to have four pages each page has its own recordset, let's say now I want to filter the recordset for (Blue Circle) page 
    I don't know how to do it but by following the steps in Dreamweaver help: 
    -Select name, and click the Select button. 
    -Select content, and click the Select button. 
    -Select shape, and click the Where button. 
    -Select section, and click the Where button. 
    -Select time, and click the Order By button. 
    this is how the SQL statement look likes:
    SELECT mytable.name, mytable.contents
    FROM mytable
    WHERE mytable.shape='circle' AND mytable.`section`='blue'
    ORDER BY mytable.hdw_serverTime 
    then to Define the variables 'circle' and 'blue' :
    by clicking the Plus (+) button in the Variables area and entering the following values in the Name, Default Value, and Run-Time Value columns:
    circle,square,Request("circle")
    blue,blue,Request("blue") 
    Also I understand that I have to define a parameter but which (URL or Form) and how?  I don't know 

  • No Java is such a show stopper...

    No java stored procdures is such a limiting factor, I think it's a show stopper for me to make any use out of this product.
    Any chance that Oracle is going to re-think this?
    Thanks,
    Robbin

    While I agree with your grief you also gotta remember that
    - XE fights in the same space as MS Access, and you might need to add the potential plethora of MS Access 'databases' to your '20 production databases' count to get a more accurate perspective;
    - XE would need 3-5x the footprint to include Java in the database, which defeats the quick download and easy install requirement;
    - The target community is NOT the professional DBA, and those in the target are often frightened by 'Java'.
    I was also very disappointed to hear that XE would not include Java. I got over it, but still have hope to see it as an optional add-on download for the next release.
    By the way - portability means different things to different people. Based on experience, I am very wary of people trying to sell me anything that is 'totally portable between rdbms such as DB2, Oracle, MySQL, etc'. I've found that those kinds of portability often waste my time and money, for the reasons best described by Tom Kyte in the first chapter of each of his books.

  • So I keep trying to sync music to my iPhone from iTunes, and whenever I select the album the sync goes by really fast and nothing goes onto my phone. Then when I click "On this iPhone" it shows the songs, but they're grey, and I can't click on them. Help?

    So I keep trying to sync music to my iPhone from iTunes, and whenever I select the album the sync goes by really fast and nothing goes onto my phone. Then when I click "On this iPhone" it shows the songs, but they're grey, and I can't click on them. Help?

    Ok, sorry. And yes, I just restored my iPhone as new and tried to put all the songs on there before I even restored with my previous backup, but it still does the same thing... even when I just checked the option to sync only "selected music or videos". How's that possible?
    P.S. After I tried syncing with checked songs only, nothing showed up under Music on my phone and this message popped up in iTunes: "The iPhone "..." could not be synced because the sync session failed to finish." If you could, please tell me what that means, thanks.

  • When turning on my mac book pro it displays a screen with apple logo and begins loading a loading bar, after this continues to show loading circle however has been like this all day still no different. Tried turning it on and off however still same!

    When turning on my mac book pro it displays a screen with apple logo and begins loading a loading bar, after this continues to show loading circle however has been like this all day still no different. Tried turning it on and off however still same!

    ... then run Disk Utility, Repair Disk.
    Also:
    Resolve startup issues and perform disk maintenance with Disk ...
    Mac troubleshooting FAQ: start-up woes
    How To Fix Common Mac Startup Problems
    Mac Stalls on Gray Screen at Startup - Troubleshooting Mac Startup ...

  • When I send an email it shows up in the sent folder as new, how do I fix this so it shows it as read automatically?

    When I send an email it shows up in the sent folder as new, how do I fix this so it shows it as read automatically?

    I don't want all my mail to be marked as read, just the sent messages. I set Thunderbird up on my new PC and whenever I send an email it goes to my sent folder like I want, but it shows up as a new or unread message. I have Thunderbird on my two other PC's and it doesn't act this way. On the other PC's when I send out an email, it shows up in my sent folder as read. That's the way I want it to act on my new PC. With the other two PC's I didn't have to do anything to the setting it was like that from the start.
    I appreciate any help I can get in this matter. Thank you

  • Hi when i run this query its showing an error ORA_22905 cannot access rows

    hi when i run this query its showing an error ORA_22905 cannot access rows from an non nested table item can anyone help me out
    SELECT
    DISTINCT SERVICE_TBL.SERVICE_ID , SERVICE_TBL.CON_TYPE, SERVICE_TBL.S_DESC || '(' || SERVICE_TBL.CON_TYPE || ')' AS SERVICE_DESC ,SERVICE_TBL.CON_STAT
    FROM
    TABLE(:B1 )SERVICE_TBL
    WHERE
    CON_NUM = :B2
    thanks & regards

    Note the name of this forum is SQL Developer *(Not for general SQL/PLSQL questions)* (so for issues with the SQL Developer tool). Please post these questions under the dedicated SQL And PL/SQL forum.
    Regards,
    K.

  • This program is showing errorss

    hi,
    Can any one tell why this program is showing errorss
    class A {
        /** Creates a new instance of a */
      int i=10;
      int j;
      try
           i= 20/0;
      catch (ArithmeticException a)
          System.out.println(a);
    class exp1
         public static void main(String[] args)
              A x = new A();
              System.out.println(x.i);
           System.out.println("after try  ");
    }it is showing error as
    exp.java:19: illegal start of type
    try
    exp.java:26: <identifier> expected
    }

    class A {
        /** Creates a new instance of a */
      public int i=10;
      public int j;
      A(){
      try
           i= 20/0;
      catch (ArithmeticException a)
          System.out.println(a);
    public class exp1
         public static void main(String[] args)
              A x = new A();
              System.out.println(x.i);
           System.out.println("after try  ");
    }

  • About This Mac Storage shows wrong size

    Hello, the story so far
    Actions:
    - MBA early 2014 (128GB) maverick updated to yosemite in November 2014
    - fresh install of Yosemite via wifi in January 2015 - followed instructions as suggested here http://support.apple.com/kb/PH14243
    Consequences after fresh installation:
    - About This Mac > Storage shows total hard disk size 120GB, About This Mac > Storage shows 110GB
    - About This Mac > Storage shows approx 9GB of apps. The actual applications folder size is far, far, far less than 9GB as showed in Terminal.
    - About This Mac > Storage shows approx 1GB of data for videos, audio and photos. There are no photos, video, documents stored on MBA.
    For the records, no device data was sync after fresh installation and the trash is being emptied securely.
    I am new to MAC so I would be grateful if you could help me understanding why About This Mac > Storage is showing more data stored than Terminal and Finder and what I should do to rectify the discrepancy.
    Many thanks of your understanding and support.
    Cheers, puzzled_me

    Kappy, may thanks. No difference, Get Info for the folders returns same data size as About This Mac > Storage
    On a different note I have noticed that there are two Library folders under harddrive. See screenshot attached.
    System/Library (6.8GB) folder contains subfolders that are also contained under Library (2.7GB) folder.
    Could that be the problem?? Is that normal to have two Library folders??
    Thank you for your help.

  • Hello, I have try to install Snow Leopard but when I am checking the section"about this computer" is show me the same soft OS x 10.5.8. Is it that normal or it must appear a different soft there. Please also advice what to do, because I have tried twice.

    Hello, I have try to install Snow Leopard but when I checking the section"about this computer" is show me the same soft OS x 10.5.8. Is it that normal or it must appear a different soft there. Please also advice what to do, because I have tried twice.
    Thanks

    These places,
    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro
    https://discussions.apple.com/community/mac_os?view=discussions 
    http://www.apple.com/support/macbookpro
    You need to buy 10.6.x DVD or flash drive (w/ Lion or Mountain Lion).
    Check Apple Store or call.

  • I can't open ibooks.. this message always shows up

    I can't open ibooks.. thi message always shows up
    Process:         iBooks [7741]
    Path:            /Applications/iBooks.app/Contents/MacOS/iBooks
    Identifier:      com.apple.iBooksX
    Version:         1.0.1 (281)
    Build Info:      iBooks-281000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [149]
    Responsible:     iBooks [7741]
    User ID:         501
    Date/Time:       2014-01-07 13:56:57.540 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  4274926D-D6AA-EC5C-EBA5-E1F92A806D7A
    Sleep/Wake UUID: 32F404D6-FFF1-4907-8661-41C171DCAB86
    Crashed Thread:  6  Dispatch queue: com.apple.NSXPCConnection.user.com.apple.BKAgentService
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: cgImage != NULL'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8a5e141c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff934b8e75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8a5e11f8 +[NSException raise:format:arguments:] + 104
    3   Foundation                          0x00007fff8991dc61 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 189
    4   AppKit                              0x00007fff8d678237 -[NSBitmapImageRep initWithCGImage:] + 135
    5   IMCommonCore                        0x00000001004c561a -[NSImage(IMCompatibility) im_imageWithPixelSize:] + 372
    6   IMCommonCore                        0x00000001004c549c -[NSImage(IMCompatibility) im_imageWithSize:options:] + 402
    7   BKAssetEpub                         0x0000000107f3f76c _ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_ + 1327
    8   BKAssetEpub                         0x0000000107f3f42e _ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_ + 497
    9   BKAssetEpub                         0x0000000107f3f2fe _ZNSt3__118__tree_left_rotateIPNS_16__tree_node_baseIPvEEEEvT_ + 193
    10  BKLibraryPlatformDataSources        0x0000000104ced7a5 BKLibraryPlatformDataSources + 18341
    11  libdispatch.dylib                   0x00007fff8858d1d7 _dispatch_call_block_and_release + 12
    12  libdispatch.dylib                   0x00007fff8858a2ad _dispatch_client_callout + 8
    13  libdispatch.dylib                   0x00007fff8858c68f _dispatch_queue_drain + 451
    14  libdispatch.dylib                   0x00007fff8858d9dd _dispatch_queue_invoke + 110
    15  libdispatch.dylib                   0x00007fff8858bfa3 _dispatch_root_queue_drain + 75
    16  libdispatch.dylib                   0x00007fff8858d193 _dispatch_worker_thread2 + 40
    17  libsystem_pthread.dylib             0x00007fff8ef61ef8 _pthread_wqthread + 314
    18  libsystem_pthread.dylib             0x00007fff8ef64fb9 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8eaeba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8eaead18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a504315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a503939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a503275 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x00007fff92afaf0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x00007fff92afacb7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x00007fff92afaabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x00007fff8d3df28e _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x00007fff8d3de8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit                        0x00007fff8d3d29cc -[NSApplication run] + 553
    11  com.apple.AppKit                        0x00007fff8d3bd803 NSApplicationMain + 940
    12  libdyld.dylib                           0x00007fff8e7605fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8eaefe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8ef61f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8eaf0662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8858c43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8858c152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8eaefe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8ef61f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8eaefe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8ef61f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 5:: Dispatch queue: NSOperationQueue 0x60000083f740
    0   libsystem_kernel.dylib                  0x00007fff8eaeba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8eaead18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a504315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a503939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a503275 CFRunLoopRunSpecific + 309
    5   com.apple.CommerceKit                   0x00007fff8bda38d0 -[ISOperation runRunLoopUntilStopped] + 46
    6   com.apple.CommerceKit                   0x00007fff8bdaca03 -[ISURLOperation _runWithURL:] + 648
    7   com.apple.CommerceKit                   0x00007fff8bdac705 -[ISURLOperation _run] + 207
    8   com.apple.CommerceKit                   0x00007fff8bda9408 -[ISURLOperation run] + 19
    9   com.apple.CommerceKit                   0x00007fff8bda9056 -[ISStoreURLOperation _runURLOperation] + 2095
    10  com.apple.CommerceKit                   0x00007fff8bda826e -[ISStoreURLOperation run] + 109
    11  com.apple.CommerceKit                   0x00007fff8bda458e -[ISOperation _main:] + 435
    12  com.apple.CommerceKit                   0x00007fff8bda409b -[ISOperation main] + 581
    13  com.apple.CommerceKit                   0x00007fff8bda39c3 -[ISOperation runSubOperation:returningError:] + 212
    14  com.apple.CommerceKit                   0x00007fff8bde86ce -[StorePlatformOperation run] + 234
    15  com.apple.CommerceKit                   0x00007fff8bda458e -[ISOperation _main:] + 435
    16  com.apple.CommerceKit                   0x00007fff8bda409b -[ISOperation main] + 581
    17  com.apple.Foundation                    0x00007fff8982d591 -[__NSOperationInternal _start:] + 631
    18  com.apple.Foundation                    0x00007fff8982d23b __NSOQSchedule_f + 64
    19  libdispatch.dylib                       0x00007fff8858a2ad _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00007fff8858e7ff _dispatch_async_redirect_invoke + 154
    21  libdispatch.dylib                       0x00007fff8858a2ad _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8858c09e _dispatch_root_queue_drain + 326
    23  libdispatch.dylib                       0x00007fff8858d193 _dispatch_worker_thread2 + 40
    24  libsystem_pthread.dylib                 0x00007fff8ef61ef8 _pthread_wqthread + 314
    25  libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 6 Crashed:: Dispatch queue: com.apple.NSXPCConnection.user.com.apple.BKAgentService
    0   libsystem_kernel.dylib                  0x00007fff8eaef866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff8ef6135c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff8f31dbba abort + 125
    3   libc++abi.dylib                         0x00007fff89722141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff89747abc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff934b930d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff897453e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff89745456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff934b90b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff8858a2c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff8858c68f _dispatch_queue_drain + 451
    11  libdispatch.dylib                       0x00007fff8858d9dd _dispatch_queue_invoke + 110
    12  libdispatch.dylib                       0x00007fff8858bfa3 _dispatch_root_queue_drain + 75
    13  libdispatch.dylib                       0x00007fff8858d193 _dispatch_worker_thread2 + 40
    14  libsystem_pthread.dylib                 0x00007fff8ef61ef8 _pthread_wqthread + 314
    15  libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8eaefe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8ef61f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8eaefe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8ef61f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8eaefe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8ef61f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8ef64fb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8eaeba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8eaead18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a504315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a503939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a503275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8d57f1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8ef60899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8ef6072a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8ef64fc9 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8eaeba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8eaead18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a504315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a503939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a503275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8988c907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8988c70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff8ef60899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8ef6072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8ef64fc9 thread_start + 13
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8eaef9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8a54fd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff8ef60899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8ef6072a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8ef64fc9 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000102174000  rcx: 0x00000001021737f8  rdx: 0x0000000000000000
      rdi: 0x0000000000006903  rsi: 0x0000000000000006  rbp: 0x0000000102173820  rsp: 0x00000001021737f8
       r8: 0x00007fff89748ab4   r9: 0x00007fff8f345900  r10: 0x000000000c000000  r11: 0x0000000000000206
      r12: 0x0000000102173980  r13: 0x0000000000000000  r14: 0x0000000000000006  r15: 0x0000000102173860
      rip: 0x00007fff8eaef866  rfl: 0x0000000000000206  cr2: 0x0000000107733000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10029c000 -        0x1002cdfff  com.apple.iBooksX (1.0.1 - 281) <EAEE0F24-D1B8-3953-AC5D-8A4D5C48FBCC> /Applications/iBooks.app/Contents/MacOS/iBooks
           0x1002e8000 -        0x10030afff  com.apple.BKBookshelfCommonCore (1.0.1 - 1) <BBF756E3-A0FE-352E-A629-4389C18BBC21> /Applications/iBooks.app/Contents/Frameworks/BKBookshelfCommonCore.framework/Ve rsions/A/BKBookshelfCommonCore
           0x10032b000 -        0x10036efff  com.apple.IMPlatformCore (1.0.1 - 1) <FE1373CA-4F25-3C2F-BAEB-38CD4D1E4CA6> /Applications/iBooks.app/Contents/Frameworks/IMPlatformCore.framework/Versions/ A/IMPlatformCore
           0x1003a0000 -        0x100461ff7  com.apple.iTunesLibrary (11.1.3 - 11.1.3) <A58F7933-AD40-38EE-AD43-DFACD97CE246> /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
           0x1004a0000 -        0x1004a6ff7  com.apple.BookKit (1.0.1 - 158) <34C7F87F-63B6-3E53-A7B1-8A6656405F41> /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/BookKit
           0x1004b0000 -        0x100527fff  com.apple.IMCommonCore (1.0.1 - 1) <6D28CBF5-525D-33E8-946C-777A7952ED30> /Applications/iBooks.app/Contents/Frameworks/IMCommonCore.framework/Versions/A/ IMCommonCore
           0x100591000 -        0x1005a0ff7  com.apple.BKCommonCore (1.0.1 - 1) <74BB15B4-356B-3C71-AE96-C5771EA0A97A> /Applications/iBooks.app/Contents/Frameworks/BKCommonCore.framework/Versions/A/ BKCommonCore
           0x1005b9000 -        0x10066aff7  com.apple.BKPlatformCore (1.0.1 - 1) <B2CF0921-9145-3C82-8E58-9ADE1656ED07> /Applications/iBooks.app/Contents/Frameworks/BKPlatformCore.framework/Versions/ A/BKPlatformCore
           0x1006f3000 -        0x100704fff  com.apple.BKStoreAccess (1.0.1 - 1) <B46A26FE-700E-34CD-A8E0-F9030B4B22D6> /Applications/iBooks.app/Contents/Frameworks/BKStoreAccess.framework/Versions/A /BKStoreAccess
           0x10071b000 -        0x10071ffff  com.apple.BKFairPlayCore (1.0.1 - 1) <7470801B-2979-3B62-8798-2781AE37FC35> /Applications/iBooks.app/Contents/Frameworks/BKFairPlayCore.framework/Versions/ A/BKFairPlayCore
           0x100729000 -        0x100761ff7  com.apple.LookupFramework (1.1 - 132) <943587D3-3F31-329F-BB5A-893F81ECDE6A> /System/Library/PrivateFrameworks/Lookup.framework/Versions/A/Lookup
           0x10219a000 -        0x10219dfff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x104ce9000 -        0x104d00ff7  com.apple.BKLibraryPlatformDataSources (1.0.1 - 1) <3DC599E3-2CDF-335A-9622-AC12EF362B84> /Applications/iBooks.app/Contents/PlugIns/BKLibraryPlatformDataSources.bundle/C ontents/MacOS/BKLibraryPlatformDataSources
           0x1053da000 -        0x10614ffff  com.apple.CoreFP (2.5.16 - 2.5.16) <1C390A93-4187-37E7-8A7E-4417876F069B> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x1066e6000 -        0x10672aff7  com.apple.BKBookshelf (1.0.1 - 1) <65629A2A-453A-305D-8FD7-DC55012A6C1D> /Applications/iBooks.app/Contents/PlugIns/BKBookshelf.bundle/Contents/MacOS/BKB ookshelf
           0x1071df000 -        0x1071e0ff9 +cl_kernels (???) <FB300925-9D96-42D4-A549-44DF71390820> cl_kernels
           0x10721e000 -        0x10721ffe4 +cl_kernels (???) <E0E972E2-9B71-438D-8222-DABB4FA856B0> cl_kernels
           0x1075b8000 -        0x10769efef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x107926000 -        0x107926fff  com.apple.StoreJavaScript (1.0 - 1) <09F72676-E411-3F38-84A3-3DD80AC46650> /System/Library/PrivateFrameworks/StoreJavaScript.framework/Versions/A/StoreJav aScript
           0x10792a000 -        0x10792afff  com.apple.StoreXPCServices (1.0 - 1) <6EEC9C03-0635-3CFA-ADA3-23605F9DA313> /System/Library/PrivateFrameworks/StoreXPCServices.framework/Versions/A/StoreXP CServices
           0x107f3d000 -        0x108032fff  com.apple.BKAssetEpub (1.0.1 - 1) <0B925166-21D2-39D7-BD57-991567A1AB1B> /Applications/iBooks.app/Contents/PlugIns/BKAssetEpub.bundle/Contents/MacOS/BKA ssetEpub
           0x108094000 -        0x1080f6ff7  com.apple.StoreUI (1.0 - 1) <6A5E3D64-CA48-39C8-B2F6-1FF915C7E1D1> /System/Library/PrivateFrameworks/StoreUI.framework/Versions/A/StoreUI
           0x10814a000 -        0x10818bff7  com.apple.CoreRecognition (1.2 - 32.2) <BBE3F032-060C-3B4F-9640-ACC849D3018F> /System/Library/PrivateFrameworks/CoreRecognition.framework/Versions/A/CoreReco gnition
        0x7fff6a918000 -     0x7fff6a94b817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff86a40000 -     0x7fff86a46ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff86a69000 -     0x7fff86a78ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff86a79000 -     0x7fff86fe9fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8701f000 -     0x7fff87029fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8702a000 -     0x7fff8702bffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff871e7000 -     0x7fff872aaff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff872ab000 -     0x7fff872b4ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff872b5000 -     0x7fff8737efff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8737f000 -     0x7fff8737ffff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff87380000 -     0x7fff87390fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8776d000 -     0x7fff877cdfff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff877db000 -     0x7fff87871fff  com.apple.PackageKit (3.0 - 329) <F619E170-BE26-37E8-8F6E-C74D68522083> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff87872000 -     0x7fff8787cff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff8787d000 -     0x7fff87ad5ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87ad6000 -     0x7fff87ae9ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff87aea000 -     0x7fff87d2dfff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff87d2e000 -     0x7fff87d32fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff87d33000 -     0x7fff87e12fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff87e13000 -     0x7fff87e14fff  libffi.dylib (18.1) <FEB76C94-97BA-39BC-B713-D086B9757BA5> /usr/lib/libffi.dylib
        0x7fff87e15000 -     0x7fff87e61ffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff87e62000 -     0x7fff87e68fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff87e69000 -     0x7fff87f3aff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff87f48000 -     0x7fff87f49ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff87f4c000 -     0x7fff87f56fff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff87f57000 -     0x7fff87f64ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff87f65000 -     0x7fff87f6eff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff87f6f000 -     0x7fff87f6ffff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff87f70000 -     0x7fff88032ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88033000 -     0x7fff88045fff  com.apple.login (3.0 - 3.0) <B825A996-7F9C-3F47-B76F-A0F9B4BEB373> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff883ab000 -     0x7fff883adffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff88431000 -     0x7fff88435fff  com.apple.ServerInformation (2.0 - 1) <E628F08A-0F6F-384B-AFD5-1BC1BBF56F1F> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8848e000 -     0x7fff8857dfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff88589000 -     0x7fff885a3fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff88ea7000 -     0x7fff88ebefff  com.apple.ScriptingBridge (1.3.1 - 63) <CE24DD07-7A89-3105-AE57-A1BED0189292> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff88ebf000 -     0x7fff88ec6fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff88ec7000 -     0x7fff88f98ff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff88f99000 -     0x7fff88fbdfff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff89020000 -     0x7fff8918eff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8918f000 -     0x7fff891c0fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff891c1000 -     0x7fff891fbff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff891fc000 -     0x7fff89720fff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff89721000 -     0x7fff8974aff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff8974b000 -     0x7fff897a3ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff897a4000 -     0x7fff897b1fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff897b2000 -     0x7fff897f7ff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff897f8000 -     0x7fff89824fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff89825000 -     0x7fff89b24fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89b25000 -     0x7fff89b4dffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff89b4e000 -     0x7fff89b5cfff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff89b5d000 -     0x7fff8a47905f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8a47a000 -     0x7fff8a48bff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff8a48c000 -     0x7fff8a492fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8a493000 -     0x7fff8a678ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a679000 -     0x7fff8a681fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8a6b4000 -     0x7fff8a982ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8a983000 -     0x7fff8a9bffff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8aa00000 -     0x7fff8aa00ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8ab1a000 -     0x7fff8ab1dfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8ab1e000 -     0x7fff8ab67fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8ab68000 -     0x7fff8ab6bffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8ab71000 -     0x7fff8ab74ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8ab75000 -     0x7fff8ab9cff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8ab9d000 -     0x7fff8abecff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8abed000 -     0x7fff8acb8fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8acb9000 -     0x7fff8ad10fff  com.apple.ViewBridge (1.0 - 46) <C49FDC96-7087-3B2F-AEC3-039F7B2CB50C> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8ad11000 -     0x7fff8afa2ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8afa3000 -     0x7fff8afd1ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8afd2000 -     0x7fff8b03cff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8b03d000 -     0x7fff8b03fff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8b316000 -     0x7fff8b331ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b8a7000 -     0x7fff8b8f9fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8bb2a000 -     0x7fff8bb8eff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8bbf2000 -     0x7fff8bbf9ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8bc0a000 -     0x7fff8bc65ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8bc70000 -     0x7fff8bc99fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8bc9a000 -     0x7fff8bd07fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8bd21000 -     0x7fff8bd3aff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8bd3b000 -     0x7fff8bd63ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8bd8a000 -     0x7fff8bd8bfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff8bd8c000 -     0x7fff8c014ff7  com.apple.CommerceKit (1.2.0 - 232.2) <B32FA1E7-F34B-3A15-A08E-A9D3C1394421> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff8c225000 -     0x7fff8c266ff7  com.apple.avcore (8.0 - 900) <C8638593-B057-326D-918D-12DDADCE4606> /System/Library/PrivateFrameworks/AVCore.framework/Versions/A/AVCore
        0x7fff8c267000 -     0x7fff8c397ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8c398000 -     0x7fff8c3ccffb  com.apple.datadetectors (5.0 - 246.0) <26962AB2-75C3-3D45-A9BF-6D75CC263DEF> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff8c3cd000 -     0x7fff8c43cff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c43d000 -     0x7fff8c43ffff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8cb99000 -     0x7fff8cc87fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8cc88000 -     0x7fff8cc88fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8cc89000 -     0x7fff8ccb3ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8ccb4000 -     0x7fff8ccbfff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8ccc0000 -     0x7fff8ccc2fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8ccc3000 -     0x7fff8cd73ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8cda5000 -     0x7fff8cdd2ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8cdd3000 -     0x7fff8ced8fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8ced9000 -     0x7fff8cedafff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8cef1000 -     0x7fff8cef3ff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8cef4000 -     0x7fff8cf74fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8cf75000 -     0x7fff8cf9aff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8cf9b000 -     0x7fff8cf9efff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8cf9f000 -     0x7fff8cfd0ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8cfd1000 -     0x7fff8cfedfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8d002000 -     0x7fff8d04dfff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8d0d5000 -     0x7fff8d101ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8d102000 -     0x7fff8d363ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8d364000 -     0x7fff8d366fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8d3bb000 -     0x7fff8df2fff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8df30000 -     0x7fff8df33fff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8df34000 -     0x7fff8e056ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8e057000 -     0x7fff8e061ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8e10c000 -     0x7fff8e113fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8e114000 -     0x7fff8e116fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e117000 -     0x7fff8e11cfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8e18e000 -     0x7fff8e1d3ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e1e4000 -     0x7fff8e223fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e224000 -     0x7fff8e22cfff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8e25c000 -     0x7fff8e2e8ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8e2e9000 -     0x7fff8e300fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8e301000 -     0x7fff8e5d5fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8e5d6000 -     0x7fff8e5dbff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8e5dc000 -     0x7fff8e5e5fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8e5e7000 -     0x7fff8e5f9ff7  com.apple.CoreBluetooth (1.0 - 1) <67A00F44-563E-3C55-9187-34D502D84DDE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff8e5fa000 -     0x7fff8e671fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8e672000 -     0x7fff8e683ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8e684000 -     0x7fff8e69cff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8e75d000 -     0x7fff8e760ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff8e761000 -     0x7fff8ea7bff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8ea7c000 -     0x7fff8ead9fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8eada000 -     0x7fff8eaf6ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8eaf7000 -     0x7fff8eb94fff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8eb95000 -     0x7fff8eba9fff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8ebaa000 -     0x7fff8ebb0ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff8ebb1000 -     0x7fff8ed4dff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ed4e000 -     0x7fff8ee3fff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8ee40000 -     0x7fff8ee8dfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8ef5f000 -     0x7fff8ef66ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8ef67000 -     0x7fff8ef69fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8ef6a000 -     0x7fff8ef80fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ef81000 -     0x7fff8ef82ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ef83000 -     0x7fff8ef95fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8ef96000 -     0x7fff8efb2fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8efb3000 -     0x7fff8efbaff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8efbb000 -     0x7fff8f014fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f015000 -     0x7fff8f04dff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8f04e000 -     0x7fff8f087ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8f088000 -     0x7fff8f08cff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8f08d000 -     0x7fff8f08eff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff8f08f000 -     0x7fff8f0d6fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8f0d7000 -     0x7fff8f0f4ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8f0f5000 -     0x7fff8f124ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8f125000 -     0x7fff8f135ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8f136000 -     0x7fff8f143ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8f1b2000 -     0x7fff8f1d9ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8f1da000 -     0x7fff8f1deff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8f1df000 -     0x7fff8f1dffff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8f25f000 -     0x7fff8f2adfff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8f2ae000 -     0x7fff8f2afffb  libScreenReader.dylib (333.2) <0172E6E2-9D4B-36BF-81DC-428FF0668E78> /usr/lib/libScreenReader.dylib
        0x7fff8f2c1000 -     0x7fff8f34aff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff8f34b000 -     0x7fff8f399ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
        0x7fff8f39a000 -     0x7fff8f39efff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8f39f000 -     0x7fff8f39ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8f3a0000 -     0x7fff8f48afff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8f48b000 -     0x7fff8f4d2ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
        0x7fff8f4d3000 -     0x7fff8f4dbffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8f510000 -     0x7fff8f79efff  com.apple.RawCamera.bundle (5.02 - 725) <4DE37ECB-24CD-38B1-B5AF-1EE911E19B80> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8f79f000 -     0x7fff8f7c4ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f7c5000 -     0x7fff8f7e9ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8f83a000 -     0x7fff8f887ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8f888000 -     0x7fff8f888fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8f889000 -     0x7fff8f8cfff7  com.apple.DiskManagement (6.0 - 744) <FE9F0616-FFCA-31D2-A0B5-E6C943326543> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8f8dd000 -     0x7fff8f8e1ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff8f8e2000 -     0x7fff8f8e4fff  com.apple.loginsupport (1.0 - 1) <4772DFF0-E8FD-3F27-9C3B-39563B904E1C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8f8e5000 -     0x7fff8f8eafff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8f8f1000 -     0x7fff8f8fdff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8f8fe000 -     0x7fff8f917ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8f918000 -     0x7fff8f935fff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8f936000 -     0x7fff8fcacffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8fcad000 -     0x7fff8fcadff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8fcae000 -     0x7fff8fcb8ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8fcb9000 -     0x7fff8fd54ff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8fd61000 -     0x7fff8fd90ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90143000 -     0x7fff90f90ffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff90f91000 -     0x7fff90fe4fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff90fe5000 -     0x7fff9122dfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff9122e000 -     0x7fff91245fff  com.apple.PackageKit.PackageUIKit (3.0 - 329) <2B237B93-D088-33B7-AD28-79E5BC27576B> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff91246000 -     0x7fff91372fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9152f000 -     0x7fff91537ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff91538000 -     0x7fff91562ff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff91563000 -     0x7fff91575ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff91576000 -     0x7fff915daff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff915db000 -     0x7fff915dbfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff915dc000 -     0x7fff91670ff7  com.apple.Bluetooth (4.2.0 - 4.2.0f6) <94BCC858-0582-3C2F-8A43-486896564758> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff91671000 -     0x7fff91672fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff91673000 -     0x7fff91674ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff91694000 -     0x7fff916a2fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff916a3000 -     0x7fff916e4fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff916e5000 -     0x7fff91b18ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff91b19000 -     0x7fff91ba2fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff91ba3000 -     0x7fff91ff1fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff920d7000 -     0x7fff920f2ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1>

    Hello quieromeloso
    Start by creating a test user or log in to a different user on your Mac to see if the behavior is still present. The article below will give further assistance on troubleshooting further.
    Mac OS X: How to troubleshoot a software issue
    http://support.apple.com/kb/ht1199
    Regards,
    -Norm G.

  • Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out

    Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out because it cost me to high and if this is not activated i have to bear a huge loss.i am a loyal customer of apple from a past 5 years.thank you for your cooperation

    Yes, this is activation lock. Return the phone for a refund, as it is useless without the activation information of the previous owner.

  • When i want to create my apple ID without credit card (while the none button is on), the message "contact itunes support to complete this transaction" is showing. what does it mean and what should i do to create my apple ID?

    when i want to create my apple ID without credit card (while the none button is on), the message "contact itunes support to complete this transaction" is showing at the last step. what does it mean and what should i do to create my apple ID?

    Creating an iTunes store/iBookstore/Mac App Store account without a credit card
    Follow the instructions carefully and to the letter.

  • HT2930 The amp effects noisy. It's a show stopper. Other apps (ampkit, etc) are quiet. Anyone find a solution? iPad 1 iOS 5.1, GB 1.2.1

    The amp effects are way too noisy. It's a show stopper. Other apps (ampkit, etc) are quiet.
    Apples answer to use noise gate is a band aide over a software problem.
    Anyone find a solution?
    iPad 1 iOS 5.1.1, GB 1.2.1

    You should be able to simply sync with iTunes again in order to reload all of you apps and media. That is why iTunes prompted you to transfer the purchases. You may have to select all of the content again when you click on each tab in the iTunes window on the right, but the content should be in your iTunes library.
    You should also be able to restore from the backup that iTunes created before the update took place in order to restore your app data. When the iPad is connected to your computer and with iTunes running, right click on the iPad on the left side and select "Restore From Backup". A window will popup with a drop down list of all of the available backups for the device. Select the one that you want to use and restore from it.

Maybe you are looking for

  • Can't see photos in library

    Yesterday my computer offered me an update to iPhoto and said that the thumbnails needed to be upgraded (or something along those lines). I clicked yes, and then I think foolishly, imported some more photos whilst this was occuring (I assume. I didnt

  • Re: Windows Vista Ultimate 32-bit FN key and Bluetooth crash

    I have an old problem with FN key. I installed Vista and after a while, it stops working. In Windows, when I press the FN key it freezes about 3 seconds, a blue screen appears that tells me Vista has crashed, a memory dump begins and then the laptop

  • Please help me finding error in 'check in view'

    This is the error i am getting in 'check in view' Application returned = <WavesetResult> <ResultItem name='report' type='report' status='ok'> <String><?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE Report PUBLIC 'waveset.dtd' 'waveset.dtd'> <Report>

  • Broken downloads..

    I just updated to a new mac mini and to leopard.2 and I'm very frustrated with all Safari downloads keep breaking and time out. I cannot download anything without reloading the file every 2MB!! Other than that, Safari loads fast and trouble-free any

  • Ready for a new camera

    Hi, I've been using the T3i with an EF 100-400 lens for about four years now. I've gotten a lot of good service out of it without any problems. I mainly photograph birds but never been happy with my BIF shots in comparison to friends that own the 7D