What is Uncaught error fetching image ?

Hi,
I am using Netbeans 5.5.1 with JDK 6 bundle and trying to build an GUI application but I am getting strange error like this when I try to compile and run:
=====================================================
Uncaught error fetching image:
java.lang.NullPointerException
at sun.awt.image.URLImageSource.getConnection(URLImageSource.java:97)
at sun.awt.image.URLImageSource.getDecoder(URLImageSource.java:107)
at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
=====================================================
I tried to debug but I was not able to. It happens even before the first line of code executes?
What is this error and how can I fix this?
Thanks

Well I have one image loaded in label and one in a button. Both loaded as classpath. I have tried to set the image as null (no image) but it still shows the same error. However I can build my application without error. This error shows only if tried to run from within the IDE. Built jar file can be executed from outside the IDE.

Similar Messages

  • Uncaught error fetching image

    Hi all,
    It seems that my GNOME Terminal can't open a window with Java (JRE 1.5 update 6) when I call a java-dependent software. I get this kind of error messages:
    Uncaught error fetching image:
    java.lang.NullPointerException
            at sun.awt.image.URLImageSource.getConnection(Unknown Source)
            at sun.awt.image.URLImageSource.getDecoder(Unknown Source)
            at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
            at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
            at sun.awt.image.ImageFetcher.run(Unknown Source)Someone? Any clue?
    Thanks a lot for time and experience.
    Manu

    which image is involved here? an image provided by my
    application software, or by JRE?
    what can I do to make it open this image?
    manu
    PS: I also tried with Xterm, but I receive the same
    error messagesHard to say. The image does probably not belong to the JRE. I guess you need to debug the application.
    Kaj

  • Help me this error :"uncaught error fetching image" with Jar file

    Hi all.
    I have a program written with Swing. This program has one button and fetch Image into this button. Image is in Images directory .When I run this program by IDE, It's OK. However, when I compress classes of this program into Jar file and run, it can not recognize the path to Image. And it leads to this error:
    "uncaught error fetching image"
    I have tried to look for a lot of information relating to this problem on the internet but nothing is possible.
    Please help me. Thank you.
    And my program
    http://www.mediafire.com/?j0yzun4d0mx

    When you JAR it's different. Try something like this:
    BufferedReader br=new BufferedReader(new InputStreamReader(getClass().getResourceAsStream(listname)));
    you don't hae to do the BufferedReader, but the getClass().getResource... is what you need.

  • Uncaught error fetching image: java.lang.NullPointerException

    Hi everybody,
    I am developing standalone application using NetBeans,the aplication is running fine in netbeans IDE but not when Jar alone tried to run.I kept all the files related to application with the jar.
    when running jar,the app is running fine upto some extent,and throwing exception at the time of fetching images from images folder which is placed inside "src folder"
    class files package and images folder are in the src folder. the code is like this:
    mLogo = new JLabel();
            URL lUrlLogo =  getClass().getResource("/images/eaze.gif");
            System.out.print(lUrlLogo);
            Image lLogoimage = Toolkit.getDefaultToolkit().createImage(lUrlLogo);//.getImage(lUrlLogo);
            ImageIcon licon = new ImageIcon(lLogoimage);
            mLogo.setIcon(licon);i tried by using Mainclass.class.getResource("/images/eaze.gif");
    and also by using thread but dint solved
    The exception is like this:
    Uncaught error fetching image:
    java.lang.NullPointerException
    at sun.awt.image.URLImageSource.getConnection(URLImageSource.java:99)
    at sun.awt.image.URLImageSource.getDecoder(URLImageSource.java:113)
    at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
    at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
    at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)

    don't specify an absolute path line "/images/eaze.gif" but use a relative path like "images/eaze.gif" or you might need the complete package path.

  • Uncaught error fetching image? Help appreciated.

    Hello. I'm currently working on a simple game that is quite similar to Minesweeper. There are 25 JPanels that show an image when they are clicked, the object being to find all the gophers. Everything is working fine, but for some reason I'm getting an error when an image tries to load. This happens randomly throughout the game, with some loading and then crashing when the error appears. The error I get is the following:
    Uncaught error fetching image:
    java.lang.NullPointerException
            at java.io.FileInputStream.<init>(FileInputStream.java:103)
            at java.io.FileInputStream.<init>(FileInputStream.java:66)
            at sun.awt.image.FileImageSource.getDecoder(FileImageSource.java:35)
            at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
            at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
            at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)I'm currently using a modified version of Random that someone created, that makes sure values in a certain range are not repeated, to assign strings containing the image file's name randomly across the JPanels. Here's the method that I'm using to assign the strings:
        public void Generate() {
            for(int i = 0; i <= 24; i++) {
                if(i < maxGophers)
                    imageName = "gopher.jpg";
                else if(i < maxGophers+maxWolves && wolvesJCheckBox.isSelected())
                    imageName = "wolf.jpg";
                else if(i > maxGophers)
                    imageName = "hole.jpg";
                switch(generator.getNextInt(26)) {
                    case 1: panel1 = imageName;
                            break;
                    case 2: panel2 = imageName;
                            break;
                    case 3: panel3 = imageName;
                            break;
                    case 4: panel4 = imageName;
                            break;
                    case 5: panel5 = imageName;
                            break;
                    case 6: panel6 = imageName;
                            break;
                    case 7: panel7 = imageName;
                            break;
                    case 8: panel8 = imageName;
                            break;
                    case 9: panel9 = imageName;
                            break;
                    case 10: panel10 = imageName;
                            break;
                    case 11: panel11 = imageName;
                            break;
                    case 12: panel12 = imageName;
                            break;
                    case 13: panel13 = imageName;
                            break;
                    case 14: panel14 = imageName;
                            break;
                    case 15: panel15 = imageName;
                            break;
                    case 16: panel16 = imageName;
                            break;
                    case 17: panel17 = imageName;
                            break;
                    case 18: panel18 = imageName;
                            break;
                    case 19: panel19 = imageName;
                            break;
                    case 20: panel20 = imageName;
                            break;
                    case 21: panel21 = imageName;
                            break;
                    case 22: panel22 = imageName;
                            break;
                    case 23: panel23 = imageName;
                            break;
                    case 24: panel24 = imageName;
                            break;
                    case 25: panel25 = imageName;
                            break;
                } // end switch
            } // end for
        } // end method Generate{code}This is the code I'm using to load the images once the JPanels are clicked:
    {code:java}        imageIcon = new ImageIcon(panel1);
            image = imageIcon.getImage();
            Graphics g = blankJPanel1.getGraphics();
            g.drawImage (image, 1, 1, blankJPanel1);{code}There's also a JButton that draws all the associated images on all the panels, but that gives the error as well, drawing only some until it encounters it.
    I'm quite sure this isn't the most efficient way to go about it, so I'm open to any changes and suggestions. Thanks to anyone who can help!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    There are 25 JPanelsYou need to hold them in an array. All that panel1, panel2, ... panel25 business is a waste of time and space.
    java.lang.NullPointerExceptionSo something is null that shouldn't be.
    imageIcon = new ImageIcon(panel1);
    image = imageIcon.getImage();
    Graphics g = blankJPanel1.getGraphics();
    g.drawImage (image, 1, 1, blankJPanel1);i.e. one of those variables.

  • Help me this error :"uncaught error fetching image"

    I have a program written with Swing. This program has one button and fetch Image into this button. Image is in Images directory .When I run this program by IDE, It's OK. However, when I compress classes of this program into Jar file and run, it can not recognize the path to Image. And it leads to this error:
    "uncaught error fetching image"
    I have tried to look for a lot of information relating to this problem on the internet but nothing is possible.
    Please help me. Thank you.
    And my program
    http://www.mediafire.com/?j0yzun4d0mx

    Read the Swing tutorial on [How to Use Icons|http://java.sun.com/docs/books/tutorial/uiswing/TOC.html]. It shows you how to load images from a jar file.

  • Error creating image

    Im getting error when trying to create an image from array
    when i am reading the image as array from the network
    public void write(OutputStream out) throws IOException{
        DataOutputStream dout = new DataOutputStream(out);
        //Write mood name
        dout.writeUTF(m_moodName);
        if(m_img == null){
          //Write there is no image
          dout.writeBoolean(false);
        }else{
          //Write there is image
          dout.writeBoolean(true);
          PngEncoder pngEncoder = new PngEncoder(m_img);
          byte[] array = pngEncoder.pngEncode();
          //Write the array length
          dout.writeInt(array.length);
          //Write the array
          dout.write(array);
          dout.flush();
      public void read(InputStream in) throws IOException{
        DataInputStream din = new DataInputStream(in);
        //Read mood name
        m_moodName = din.readUTF();
        //Read if there is image
        boolean bool = din.readBoolean();
        if(bool == true){
          //Read byte array length
          int length = din.readInt();
          byte[] array = new byte[length];
          //Read to byte array
          din.readFully(array);
          m_img = Toolkit.getDefaultToolkit().createImage(array);
      }This is the exception that i am getting
    Uncaught error fetching image:
    java.lang.NegativeArraySizeException
         at sun.awt.image.PNGImageDecoder.produceImage(Unknown Source)
         at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
         at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
         at sun.awt.image.ImageFetcher.run(Unknown Source)I am getting this error from this line... (i think)
    m_img = Toolkit.getDefaultToolkit().createImage(array);and here is PNG encoder that i am using
    http://catcode.com/pngencoder/
    please help...
    shay

    There are many possible reasons, for example:
    - pngEncoder produces wrong result.
    - byte array is corrupted on transition.
    I'd suggest to save this byte array as file and check if this image can be open by any image viewer.
    Also, it seems Image I/O is applicable in your scenario.
    Consider using it because it is recomeded API to work with images nowadays
    (unless you have something ImageIO can not handle, e.g. animated images)

  • HT3275 What if my error message is the following:  The backup disk image "/Volumes/********'s Time Capsul/****'s MacBook Pro.sparsebundle" is already in use. (I have redacted the name of the computer with asterixes)

    What if my error message is the following:  The backup disk image “/Volumes/********'s Time Capsul/****’s MacBook Pro.sparsebundle” is already in use. (I have redacted the name of the computer with asterixes)

    This is a complex procedure.  
    Pull the power cord from the back of the Time Capsule
    Wait a minute or two
    Plug the power cord back in to the back of the Time Capsule
    This will fix the issue 98% of the time. If you are in the unlucky 2% category, more help is here from Pondini, the Time Machine guru:
    The Backup disk image ... sparsebundle ... is already in use.

  • Uncaught error java nullpoint exception, email icons disappeared, application loader unable to back up data, desktop manager unable to connect

    Model:  Curve 8900
    Provider: At&t
    Platform: 4.2.0.108
    I'm ready to throw this phone in the blender.... if I could only back up my data first. A couple of months ago the What's App application required an update. I updated it and ever since my phone has steadily had more and more issues. First, I kept getting this uncaught error message, shortly thereafter the 2 email accounts (both gmail) that I have linked to the account disappeared. The message icon shows that I have messages, but icons not there (I have tried the show all option). At one point the message icon started exponentially adding the number of messages until it got up to over 86,000. When I reboot the phone it goes back down and then steadily increases again... usually though it's more to 400 - 500 rather then tens of thousands. I have been trying to install updates and do a wipe of the BB so that I can start from scratch, unfortunately the application loader is unable to back up data. The desktop manager is unable to connect to the blackberry and indicates that an upgrade is required. I have tried doing the upgrade both directly from the phone and connected to the desktop manager, but nothing seems to work. If I try to upgrade the software directly from the BB, I get to the start download button and when I click, nothing happens. I have removed all applications except bberry app world and one game that I play, Pixelated Plus. Still nothing. Any ideas?

    Do you want to save the messages?
    If not (and I think they are the problem) open the Desktop Software > Device > Delete Data and click the "select Data" option. Select the Messages to remove. Complete the prompts and finish.
    Then, return to backup the entire device, and see if that is possible to complete this time with no messages.
    Now, once the back up is done and you have your data, you can disconnect the device.
    Now, use BBSAK to wipe the device and subsequently load the new operating system.
    **If you cannot complete the backup again above, you might have to do without it, OR you can use the Desktop Software to sync your Address book, calendar, memos and tasks to Outlook. OR, you can easily install and use BlackBerry Protect to backup your device over the air to RIM servers, then once wiped and the new OS reloaded, you can use Protect to restore the data back to the 8900. << This you should do regardless.
    Good luck, post back here as you have questions.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • In iphoto i get this error for a video that I wanted to play - The operation couldn't be completed. (OSStatus error -54.) what is that error and how to fix it?

    The operation couldn’t be completed. (OSStatus error -54.)
    My Apple course instructor felt it would be smart to create all in iphoto dragging in all videos and photos to one spot.
    I now get these errors and they wont play.
    What is the error telling me and how do I fix it and get the video to play please??
    Is it true iphoto will be replaced in this New Year and if so does anyo

    No it didn't at all.
    I went to the finder and saw several of the same .
    When I called Apple they told me not to delete anything using the Finder… odd I thought, as that was the only way I could see the multiple videos and photos.
    Do you think there is any harm in deleting from there directly if I have a good playable copy?
    Thank you both for responses.
    The clips/videos some are from iPhone 4.
    I opened it manually and found 4 copies of most of the same videos, same names, some with slight variations. Don't know why.
    Some are titled from iphoto /Masters    don't know why that happened
    Now I also have some clips with white dotted line on grey where the clip used to be? why would that occur??
    In my finder there are now 97000 images. Yet I only have 22,000 in iphoto. Where are the rest located and why so many duplicates?
    Have I checked a box somewhere and need to address that?
    Thank you for any insight and guidance.

  • 'what kind of error 'plzzz help

    hi all
    plz check the following code and error which it is givn 2 me. how shld i rectify it? not able to get what kind of error it is.
    *& Report  ZNBS_FI_FS10N
    REPORT  ZPRAC_FI_VENDORSTATEMENT.
    Report Title          : Display Line item balances for VENDORs with opening balances
    Functional Consultant : Mr ShreeHari
    ABAPER                : Sanjay K, NBS
    TYPE-POOLS slis.
    DATA   :   fcat               TYPE slis_t_fieldcat_alv WITH HEADER LINE,
               ls_event               TYPE slis_alv_event,
               repid                  LIKE sy-repid.
    DATA   :   b_layout               TYPE slis_layout_alv.
    DATA   :   gt_events              TYPE slis_t_event WITH HEADER LINE.
    DATA   :   lt_list_commentary     TYPE slis_t_listheader,
               l_logo                 TYPE w3_qvalue.
    TABLES : BSAK, ska1, bsis, bkpf, thead, t003, t003t, LFA1, skat.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS pbukrs FOR bsis-bukrs default '1000'.
    SELECT-OPTIONS pLIFNR FOR LFA1-LIFNR  default '410028'.
    SELECT-OPTIONS pbudat FOR bsis-budat OBLIGATORY default '20060401' to '20061219'.
    SELECTION-SCREEN END OF BLOCK b1.
    DATA : BEGIN OF itab OCCURS 0,
           belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           dmbtr LIKE BSAK-dmbtr,
           wrbtr LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           ltext LIKE t003t-ltext,
           END OF itab.
    DATA TEXT(60). " LIKE t003t-ltext.
    DATA jtab LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF final OCCURS 0,
            belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           debit LIKE BSAK-dmbtr,
           credit LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           balance LIKE BSAK-dmbtr,
           ltext LIKE t003t-ltext,
           END OF final.
      DATA : BEGIN OF output OCCURS 0,
             belnr LIKE bsis-belnr,
             bukrs LIKE bsis-bukrs,
             gjahr LIKE bsis-gjahr,
             blart LIKE bkpf-blart,
             bldat LIKE bkpf-bldat,
             budat LIKE bkpf-budat,
             LIFNR LIKE LFA1-LIFNR,
             ddebit LIKE BSAK-dmbtr,
             ccredit LIKE BSAK-wrbtr,
             shkzg LIKE BSAK-shkzg,
             balance LIKE BSAK-dmbtr,
             ltext LIKE t003t-ltext,
             hkont LIKE bsis-hkont,
             bschl LIKE bsis-bschl,
             TXT50 LIKE SKAT-TXT50,
             END OF output.
    ********FOR OPENING BALANCE.
    DATA : BEGIN OF open OCCURS 0,
           wrbtr LIKE BSAK-wrbtr,
           dmbtr LIKE BSAK-dmbtr,
           bukrs LIKE BSAK-bukrs,
           shkzg LIKE BSAK-shkzg,
           END OF open.
    DATA clear LIKE open OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF bal OCCURS 0,
          dbal LIKE bsis-wrbtr,
          cbal LIKE bsis-dmbtr,
          shkzg LIKE bsis-shkzg,
          END OF bal.
    DATA date TYPE sy-datum.
    MOVE pbudat-low TO date.
    date = date - 1.
    DATA: BEGIN OF balance OCCURS 0,
          debit LIKE bsis-wrbtr,
          credit LIKE bsis-dmbtr,
          total LIKE bsis-dmbtr,
          END OF balance.
    DATA : BEGIN OF line OCCURS 0,
           belnr LIKE bsis-belnr,
           dmbtr LIKE bsis-dmbtr,
           wrbtr LIKE bsis-wrbtr,
           hkont LIKE bsis-hkont,
           gjahr LIKE bsis-gjahr,
           bukrs LIKE bsis-bukrs,
           shkzg LIKE bsis-shkzg,
           budat LIKE bsis-budat,
           blart LIKE bsis-blart,
           bschl LIKE bsis-bschl,
           TXT50 like skat-txt50,
           END OF line.
    TOP-OF-PAGE.
      PERFORM top_of_page.
    START-OF-SELECTION.
    *perform integrate.
      PERFORM fetch.
      PERFORM build_catalog.
      PERFORM layout.
    END-OF-SELECTION.
      PERFORM display .
    *&      Form  Fetch
          text
    -->  p1        text
    <--  p2        text
    FORM fetch .
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF open WHERE bukrs IN pbukrs AND budat LE date  AND LIFNR IN pLIFNR.
        COLLECT open.
      ENDSELECT.
      SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF clear WHERE bukrs IN pbukrs AND budat LE date AND LIFNR IN pLIFNR.
        COLLECT clear.
      ENDSELECT.
      LOOP AT open.
        MOVE : open-dmbtr TO bal-dbal,
               open-wrbtr TO bal-cbal,
               open-shkzg TO bal-shkzg.
        IF open-shkzg = 'H'.
          open-dmbtr = open-dmbtr * -1.
          open-wrbtr = open-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      LOOP AT clear.
        MOVE : clear-dmbtr TO bal-dbal,
               clear-wrbtr TO bal-cbal,
               clear-shkzg TO bal-shkzg.
        IF clear-shkzg = 'H'.
          clear-dmbtr = clear-dmbtr * -1.
          clear-wrbtr = clear-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      CLEAR bal.
      LOOP AT bal.
        IF bal-shkzg = 'H'.
          MOVE  : bal-dbal TO balance-debit.
          CLEAR bal-dbal.
        ELSE.
          MOVE        bal-cbal TO balance-credit.
          CLEAR bal-cbal.
        ENDIF.
        COLLECT balance.
        CLEAR balance.
      ENDLOOP.
    ********FOR LINE ITEMS
      SELECT * FROM bkpf INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat .
        SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN
        pbukrs  AND belnr = itab-belnr AND gjahr = itab-gjahr.
          IF itab-shkzg = 'H'.
            itab-dmbtr = itab-dmbtr * -1.
            itab-wrbtr = itab-wrbtr * -1.
          ENDIF.
          SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
            APPEND itab.
          ENDSELECT.
        ENDSELECT.
      ENDSELECT.
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat AND LIFNR IN pLIFNR.
        IF itab-shkzg = 'H'.
          itab-dmbtr = itab-dmbtr * -1.
          itab-wrbtr = itab-wrbtr * -1.
        ENDIF.
        SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
          APPEND itab.
        ENDSELECT.
      ENDSELECT.
      DELETE itab WHERE LIFNR NOT IN pLIFNR.
    <b>Error: <%_L002> IS NOT AN INTRNAL TABLE-THE OCCURS SPECIFICATION IS MISSING)</b></b>
    error at delete statement.
    its urgent.
    thanks all in advance.
    appropriate reward will b given.

    hi gaurav,
    u created internal table itab with out header line and u r trying to delete it from internal body itself which isn't possible.
    so do like this,
    create workarea [wa_itab] of same structure of itab [internal table] and give delete statement as
    delete wa_itab from itab where condition.
    if helpful reward some points.
    with regards,
    suresh babu aluri.

  • Editing Error - This Image cannot be rendered for editing...

    Editing Error - This Image cannot be rendered for editingbecause Aperture doesn't support the image format.
    Thats the message that appears when I'm exporting to Photoshop CS5 (I tried CS4 too), or even other Plug-ins such as Silver Efex Pro...
    That had never happened before, and I use Aperture for over 2 years.
    Its RAW image format from the same camera and all, nothing has changed. just randomly decided not to export anymore to other programs, Regular exporting works, so it's nothing to do with exporting it self, but the communication between aperture and other softwares, I think.
    I've seen some other people having the same problem, does anyone have a take on it, in how to solve this? I can't edit anymore outside of aperture. (of course not including the idea of exporting and doing everything away from aperture, which is totally not viable with the amount of content to be edited and not being in aperture anymore.)
    I've tried deleting the preferences, tried repair permissions of the Library, and still didn't work.
    Didn't go to the other 2 options (repair and rebuild database) because it would take days if chosen, and still not sure that would solve. or if has anything to do with.
    Any light anyone?

    What kind of file is it? (i.e.jpeg, Canon RAW, Nikon RAW etc..)
    As a workaround until you get the issue fixed, why not reimport the image from the original file, lift and stamp any adjustments you've made in Aperture, and see if the same problem occurs?
    A

  • Report suddenly showing ORA-20001: Error fetching column value: ORA-06502:

    Hi,
    Some reports in my applications are suddenly showing:
    ORA-20001: Error fetching column value: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    instead iof the data they used to show.
    In my development system I can fix this by:
    1. changing the column alias in my sql
    select 'a' alias1 from dual becomes
    select 'a' alias2 from dual
    2. SAVE CHANGES
    3. change column alias back to original
    select 'a' alias2 from dual becomes
    select 'a' alias1 from dual
    4. reorder columns back to original in the 'report attributes' tab
    alias1 is now at the bottom of my colum list - i just bounce it up to column 4 using the up arrows
    5. SAVE CHANGES
    then everything starts working OK again.
    There seems to be nothing wrong with my sql as I can make it works on a new page or after I run the above steps, so I guess something is breaking somewhere but I cannot work out what.
    Has anyone else seen this? Does anyone know the cause? Does anyone have a fix for this that does not involve the above steps (plus redeployment to prodcution and all the work that involves)?
    I am seeing this on version 2.3 and 3.0.
    Thanks,
    Martin

    Hi Scott,
    I think this is want you want (sorry it's not easy to read):
    wp.suite_id - Database Column NUMBER - Report Column Based on LOV
    wp.project_id - Database Column NUMBER - Report Column Based on LOV
    wp.application_order wp_order - Database Column NUMBER - Report Column Standard
    lpad(wp.work_package_id,5,'0')||' - '||wp.name wp_name - Database Column NUMBER/VARCHAR2 - Report Column Standard
    pt.application_order pt_order - Database Column NUMBER - Report Column Standard
    pt.name pt_name - Database Column VARCHAR2 - Report Column Standard
    substr(pt.description,1,30) description - Database Column VARCHAR2 - Report Column Standard
    pt.application_tier - Database Column VARCHAR2 - Report Column Based on LOV
    pt.application_method - Database Column VARCHAR2 - Report Column Based on LOV
    pt.TECH_LEAD_ID - Database Column NUMBER - Report Column Based on LOV
    This report has no link columns and no derived columns.
    Regards,
    Martin

  • Read Error of images in libre office

    read error in images of LibreOffice
    Hi, when loading this file, do not load images in the document, this only happens since version 3.5, instead of pictures, a box appears with the message "read error".
    The file I downloaded from the Internet, the images are correctly loaded into abiword.
    I would appreciate your help, thanks.
    The File

    Crystal Reports is limited in how it works with images - large images or a large number of images, etc. Much as CR is not a good database archiving tool, it's not a very good graphics presenter. I find stand-alone versions of CR are a bit better, but that may just be a perception. My recommendations:
    1) Try an eval of a stand-alone version of CR:
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Go for CR 2008 as CR 2011 does not have any SDK
    2) Make sure the picture  blob  what ever, never spills beyond the designer pane of the report. This may change from site to site depending on printer drivers used (CR depends on these to render the report)
    3) Have a look at the article [Causes of "Background Processing" error|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50a6f5e8-8164-2b10-7ca4-b5089df76b33]
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • What is this error just happend

    what is this error
    Process:         Safari [2028]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (6533.21.1)
    Build Info:      WebBrowser-75332101~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [97]
    Date/Time:       2011-05-02 13:36:00.813 +0100
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          50056 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  93068 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      BFA87824-048F-4595-B088-46E5FF439676
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000005cf89b60
    Crashed Thread:  10
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x960170e2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x9601cbe6 pthread_mutex_lock + 490
    2   com.apple.QuartzCore                    0x9091f6eb CAViewDraw + 53
    3   com.apple.Safari                        0x00098054 0x1000 + 618580
    4   com.apple.AppKit                        0x91d8382a -[NSView _drawRect:clip:] + 3510
    5   com.apple.AppKit                        0x91d824c8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1600
    6   com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    7   com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    8   com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    9   com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    10  com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    11  com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    12  com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    13  com.apple.AppKit                        0x91d827fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    14  com.apple.AppKit                        0x91d809e7 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 711
    15  com.apple.AppKit                        0x91d8055b -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 265
    16  com.apple.AppKit                        0x91d7cea2 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3309
    17  com.apple.AppKit                        0x91cdda57 -[NSView displayIfNeeded] + 818
    18  com.apple.AppKit                        0x91ca6d40 -[NSWindow displayIfNeeded] + 204
    19  com.apple.Safari                        0x000336c3 0x1000 + 206531
    20  com.apple.AppKit                        0x91ca57db -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1085
    21  com.apple.AppKit                        0x91ca533d -[NSWindow orderWindow:relativeTo:] + 105
    22  com.apple.AppKit                        0x91ca2af3 -[NSWindow makeKeyAndOrderFront:] + 73
    23  com.apple.Safari                        0x0001cba0 0x1000 + 113568
    24  com.apple.AppKit                        0x91e37e00 -[NSDocument showWindows] + 116
    25  com.apple.Safari                        0x0001c907 0x1000 + 112903
    26  com.apple.AppKit                        0x91e3623c -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 432
    27  com.apple.AppKit                        0x91e36051 -[NSDocumentController newDocument:] + 54
    28  com.apple.Safari                        0x000174cf 0x1000 + 91343
    29  com.apple.Safari                        0x00056c62 0x1000 + 351330
    30  com.apple.Safari                        0x000b1344 0x1000 + 721732
    31  com.apple.AppKit                        0x91f27f3c -[NSApplication(NSAppleEventHandling) _handleAEReopen] + 276
    32  com.apple.AppKit                        0x91e3510d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    33  com.apple.Foundation                    0x95ded6c8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    34  com.apple.Foundation                    0x95ded48c _NSAppleEventManagerGenericHandler + 228
    35  com.apple.AE                            0x99a1df58 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    36  com.apple.AE                            0x99a1de57 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    37  com.apple.AE                            0x99a1dd61 aeProcessAppleEvent + 197
    38  com.apple.HIToolbox                     0x9312f197 AEProcessAppleEvent + 50
    39  com.apple.AppKit                        0x91cae9ca _DPSNextEvent + 1420
    40  com.apple.AppKit                        0x91cadfce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    41  com.apple.Safari                        0x00016725 0x1000 + 87845
    42  com.apple.AppKit                        0x91c70247 -[NSApplication run] + 821
    43  com.apple.AppKit                        0x91c682d9 NSApplicationMain + 574
    44  com.apple.Safari                        0x0000acf9 0x1000 + 40185
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x96052a8a select$DARWIN_EXTSN$NOCANCEL + 10
    1   libSystem.B.dylib                       0x9603e12b _dispatch_mgr_invoke + 454
    2   libSystem.B.dylib                       0x9603d4f9 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x9603d29e _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x9603cd21 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x9603cb66 start_wqthread + 30
    Thread 2:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x96045046 __semwait_signal + 10
    1   libSystem.B.dylib                       0x96044d02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x96046998 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.WebCore                       0x93edea5a WebCore::IconDatabase::syncThreadMainLoop() + 266
    4   com.apple.WebCore                       0x93edad5c WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    5   libSystem.B.dylib                       0x960447fd _pthread_start + 345
    6   libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 3:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x9601709a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x96017807 mach_msg + 68
    2   com.apple.CoreFoundation                0x98ed337f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x98ed2464 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x98ed2291 CFRunLoopRunInMode + 97
    5   com.apple.Safari                        0x0002f34f 0x1000 + 189263
    6   com.apple.Safari                        0x0002f098 0x1000 + 188568
    7   com.apple.Safari                        0x0002f031 0x1000 + 188465
    8   libSystem.B.dylib                       0x960447fd _pthread_start + 345
    9   libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 4:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x96045046 __semwait_signal + 10
    1   libSystem.B.dylib                       0x96044d02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x96046998 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore                0x9138f901 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   com.apple.Safari                        0x00045265 0x1000 + 279141
    5   com.apple.Safari                        0x000451b5 0x1000 + 278965
    6   libSystem.B.dylib                       0x960447fd _pthread_start + 345
    7   libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x9601709a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x96017807 mach_msg + 68
    2   com.apple.CoreFoundation                0x98ed337f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x98ed2464 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x98ed2291 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x95df16f4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x95db8ad0 -[NSThread main] + 45
    7   com.apple.Foundation                    0x95db8a80 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x960447fd _pthread_start + 345
    9   libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 6:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x96036066 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x98f12c83 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x960447fd _pthread_start + 345
    3   libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 7:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x96045046 __semwait_signal + 10
    1   libSystem.B.dylib                       0x96044d02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x96046998 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore                0x9138f901 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   libSystem.B.dylib                       0x960447fd _pthread_start + 345
    5   libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x9601709a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x96017807 mach_msg + 68
    2   ....audio_hijack_server.hermes          0x011649b2 ah_serv_loop + 132
    3   libSystem.B.dylib                       0x960447fd _pthread_start + 345
    4   libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x9603c9b2 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x9603cf48 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x9603cb66 start_wqthread + 30
    Thread 10 Crashed:
    0   libGLProgrammability.dylib              0x93d89fba std::basic_string<char, std::char_traits<char>, pool_allocator<char> >::compare(std::basic_string<char, std::char_traits<char>, pool_allocator<char> > const&) const + 18
    1   libGLProgrammability.dylib              0x93ddb7c0 std::_Rb_tree<std::basic_string<char, std::char_traits<char>, pool_allocator<char> >, std::pair<std::basic_string<char, std::char_traits<char>, pool_allocator<char> > const, TSymbol*>, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, pool_allocator<char> > const, TSymbol*> >, std::less<std::basic_string<char, std::char_traits<char>, pool_allocator<char> > >, pool_allocator<std::pair<std::basic_string<char, std::char_traits<char>, pool_allocator<char> > const, TSymbol*> > >::find(std::basic_string<char, std::char_traits<char>, pool_allocator<char> > const&) const + 40
    2   libGLProgrammability.dylib              0x93d87edb TSymbolTableLevel::find(TSymbol const&, int*, int) const + 51
    3   libGLProgrammability.dylib              0x93d87e63 TSymbolTable::find(TSymbol const&, bool*, bool*, int*, int) + 71
    4   libGLProgrammability.dylib              0x93d8e7e9 TParseContext::insertBuiltInArrayAtGlobalLevel() + 351
    5   libGLProgrammability.dylib              0x93d6dbec ShCompile + 622
    6   GLEngine                                0x17e4fd66 gleShaderParse + 152
    7   GLEngine                                0x17daae9c glCompileShaderARB_Exec + 199
    8   com.apple.QuartzCore                    0x9092d399 CA::OGL::GLContext::create_shader(CA::OGL::ContextState const*, CA::OGL::GLShader const*, int) + 283
    9   com.apple.QuartzCore                    0x9092d160 CA::OGL::GLContext::get_shader(CA::OGL::ContextState const*) + 400
    10  com.apple.QuartzCore                    0x9092cd69 CA::OGL::GLContext::update_shader(bool) + 113
    11  com.apple.QuartzCore                    0x9092cae4 CA::OGL::GLContext::update_state() + 286
    12  com.apple.QuartzCore                    0x9092c92f CA::OGL::GLContext::draw_elements(CA::OGL::PrimitiveMode, unsigned int, unsigned short const*, CA::OGL::Vertex const*, unsigned int, unsigned int, CA::OGL::ClipPlane const*) + 375
    13  com.apple.QuartzCore                    0x9092c7af CA::OGL::Context::array_flush() + 129
    14  com.apple.QuartzCore                    0x9092bfea CA::OGL::Context::ClippedArray::next_rect(CA::Bounds&) + 260
    15  com.apple.QuartzCore                    0x9092bc07 CA::OGL::emit_one_part_rect(CA::OGL::Context&, CA::OGL::RectState const&, float const*) + 233
    16  com.apple.QuartzCore                    0x90935a08 CA::OGL::fill_rect(CA::OGL::Context&, CA::OGL::RectState const&) + 74
    17  com.apple.QuartzCore                    0x909357a5 CA::OGL::fill_round_rect(CA::OGL::Context&, CA::OGL::RectState const&, float) + 117
    18  com.apple.QuartzCore                    0x9093eb88 CA::OGL::render_solid_background(CA::OGL::Context&, CA::OGL::Layer const*, unsigned int, CA::Render::Pattern*) + 1406
    19  com.apple.QuartzCore                    0x9093e5c7 CA::OGL::render_background(CA::OGL::Context&, CA::OGL::Layer const*) + 71
    20  com.apple.QuartzCore                    0x90929438 CA::OGL::render_contents_background(CA::OGL::Context&, CA::OGL::Layer const*) + 1642
    21  com.apple.QuartzCore                    0x90928c14 CA::OGL::LayerNode::apply(CA::OGL::Surface**) + 66
    22  com.apple.QuartzCore                    0x90928ab7 CA::OGL::ImagingNode::render(CA::OGL::ImagingNode::RenderClosure*) + 133
    23  com.apple.QuartzCore                    0x9092838f CA::OGL::render_layers(CA::OGL::Context&, CA::OGL::Layer*, CA::OGL::Gstate const&) + 901
    24  com.apple.QuartzCore                    0x90928c9d CA::OGL::LayerNode::apply(CA::OGL::Surface**) + 203
    25  com.apple.QuartzCore                    0x90928ab7 CA::OGL::ImagingNode::render(CA::OGL::ImagingNode::RenderClosure*) + 133
    26  com.apple.QuartzCore                    0x9092838f CA::OGL::render_layers(CA::OGL::Context&, CA::OGL::Layer*, CA::OGL::Gstate const&) + 901
    27  com.apple.QuartzCore                    0x9091ebf6 CA::OGL::Context::render(CA::Render::Update*) + 600
    28  com.apple.QuartzCore                    0x9091d840 view_draw(_CAView*, double, CVTimeStamp const*, bool) + 3247
    29  com.apple.QuartzCore                    0x9091cb59 view_display_link(double, CVTimeStamp const*, void*) + 61
    30  com.apple.QuartzCore                    0x9091caab link_callback + 244
    31  com.apple.CoreVideo                     0x90762a88 CVDisplayLink::performIO(CVTimeStamp*) + 354
    32  com.apple.CoreVideo                     0x907616bc CVDisplayLink::runIOThread() + 950
    33  com.apple.CoreVideo                     0x907612ea startIOThread(void*) + 156
    34  libSystem.B.dylib                       0x960447fd _pthread_start + 345
    35  libSystem.B.dylib                       0x96044682 thread_start + 34
    Thread 10 crashed with X86 Thread State (32-bit):
      eax: 0x5cf89b5c  ebx: 0x5cf89b4c  ecx: 0x00000000  edx: 0x16b03710
      edi: 0x18463018  esi: 0x18463018  ebp: 0xb5ea1f28  esp: 0xb5ea1ef0
       ss: 0x0000001f  efl: 0x00010286  eip: 0x93d89fba   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x5cf89b60
    Binary Images:
        0x1000 -   0x52bffb  com.apple.Safari 5.0.5 (6533.21.1) <B1F6DEDD-C2EC-3703-5BF5-5EDF2E055720> /Applications/Safari.app/Contents/MacOS/Safari
    0x1160000 -  0x116cff7 +com.rogueamoeba.audio_hijack_server.hermes 2.2.5 (2.2.5) <CD6C7A74-BA03-F3A7-0D1E-460E6A043024> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x2da7000 -  0x2da7ffd +jp.Canon.DPPCMPlugIn ??? (1.0) /Library/Contextual Menu Items/dppCMPlugIn.plugin/Contents/MacOS/dppCMPlugIn
    0x17c3b000 - 0x17c3bff7  com.apple.JavaPluginCocoa 13.4.0 (13.4.0) <8EB378CD-C567-32A7-1FAC-C601AA36CF2B> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x17c40000 - 0x17c44ff7  JavaLaunching ??? (???) <EC009D89-308A-81B9-D063-B80DA22D182F> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x17d2f000 - 0x17ea7fe7  GLEngine ??? (???) <0E1DF3E4-0EEE-9FD8-8F52-FFFCF0DF23A7> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x17ed9000 - 0x182defe7  libclh.dylib 3.1.1 C  (3.1.1) <04502F95-931E-0AAF-7296-4624C7F8DE8B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x18356000 - 0x1837afe7  GLRendererFloat ??? (???) <0C6A1BCF-97F0-F7D6-C840-2991681BB67C> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x18438000 - 0x1843bff3  libFontRegistryUI.dylib ??? (???) <8943206D-4B80-BE67-B17A-AF89D68C76DE> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x18442000 - 0x18443ff7  ATSHI.dylib ??? (???) <F06AB560-C2AF-09F6-7328-773E43CA2713> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x189f5000 - 0x189f8ff2 +com.macromedia.Flash Player.plugin 10.2.159.1 (10.2.159.1) <D1FBDFCE-C5B7-AC8A-51FF-C98634766DE1> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x189fe000 - 0x18a02ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <6A211097-72ED-1461-4050-72C9101D79E4> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x18a07000 - 0x18a0dffb  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <404165FF-1BA0-706B-F48A-10AC997162B1> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1907f000 - 0x19081ff3  com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x195db000 - 0x195dbff7  com.apple.VideoDecodeAcceleration 1.1 (4) <A9B630CE-14CA-9239-2335-979DC3809489> /System/Library/Frameworks/VideoDecodeAcceleration.framework/VideoDecodeAcceler ation
    0x1a347000 - 0x1a456feb  libmecab.1.0.0.dylib 2.0.0 (compatibility 2.0.0) <CBCAB9D0-A82E-9445-C3A6-B3A51E48E586> /usr/lib/libmecab.1.0.0.dylib
    0x1a730000 - 0x1a733ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1b042000 - 0x1b0a6fe2  com.apple.LiveType.framework 2.1.4 (2.1.4) <7AABA687-4323-E5B9-BA04-8F61C217E6FD> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x1b0c6000 - 0x1b11bfdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1d600000 - 0x1e03cfe3 +com.macromedia.FlashPlayer-10.6.plugin 10.2.159.1 (10.2.159.1) <024F04AC-0366-7F81-16E8-C107AD46F26D> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0x24b46000 - 0x24b54fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <AFA4C3C8-D752-EC96-FF56-6E2F8ABB391B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x268b2000 - 0x268c4ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <08801444-00D2-E55B-AE80-B807B99BB0C6> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x282a9000 - 0x282d6ff3  AVA_HD_VP3.dylib ??? (???) <4AC23F01-AD43-9536-426F-C12ABC4CC9FB> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AVA_HD_VP3.dylib
    0x28793000 - 0x2884cfff  com.apple.GeForceVADriver 1.6.26 (6.2.6) <BF996ACB-F165-B0B6-BFE1-E28706168896> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADrive r
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.4 (1.6.4) <67DA329D-A571-6066-953C-4BBFCBF87BD5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c7000 - 0x8f811ff7  com.apple.GeForceGLDriver 1.6.26 (6.2.6) <90BBC89A-6A56-C4B7-F848-432908CDE14D> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    0x90003000 - 0x90009fe7  com.apple.CommerceCore 1.0 (9) <928FCA4F-1366-AE18-CF67-87C79F5DAC21> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9000a000 - 0x90013ff7  com.apple.corelocation 12.1 (12.1) <6A5E0CEB-6656-BD61-C2D9-47D14E58977A> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x9008f000 - 0x900d0ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <95079B56-0B7B-F114-5C43-5220DBE0FBB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x900d1000 - 0x9016efe3  com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9016f000 - 0x9029dfe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x902da000 - 0x902e1ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x902e2000 - 0x902f6fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x902f7000 - 0x903a1fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <BE832CCE-B692-F55F-F5F8-3973649AFEA1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x903a2000 - 0x90411ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90412000 - 0x90413ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x90414000 - 0x9041efe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90460000 - 0x904a4fe7  com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x904a5000 - 0x904e5ff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9052c000 - 0x90575fe7  libTIFF.dylib ??? (???) <5CE284EC-F637-EDBB-FDB3-61E86407CBB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90582000 - 0x9075effb  libType1Scaler.dylib ??? (???) <494D1BE1-8395-9A53-1224-1CFD4236D40E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9075f000 - 0x9077eff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9077f000 - 0x9078dfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x9078e000 - 0x907b0fef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x907b1000 - 0x90831feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9086d000 - 0x908bdff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x908be000 - 0x90c29ff7  com.apple.QuartzCore 1.6.3 (227.36) <8E927524-EB0A-D5BA-C2E4-FA26FE4C428A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90d07000 - 0x90db7fe3  com.apple.QuickTimeImporters.component 7.6.6 (1756.15) <687BB3B8-15F6-47F3-C4A6-C6DC94098BEC> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90db8000 - 0x90dbaff7  com.apple.securityhi 4.0 (36638) <C7DA80C1-DCFD-C321-08DA-5E6946CA66E0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90dbb000 - 0x90dbbff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90dbc000 - 0x911f3ff3  com.apple.RawCamera.bundle 3.6.4 (561) <DBA5D7C1-CD82-CE7F-5AE5-A0E4E128236F> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x911f4000 - 0x9124efe7  com.apple.CorePDF 1.3 (1.3) <EA168671-F44F-BFE4-AA7D-3801DA29A650> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91290000 - 0x9129cff7  libkxld.dylib ??? (???) <9D8378E0-1C58-EED8-EA00-F4515B8BE7A3> /usr/lib/system/libkxld.dylib
    0x9129d000 - 0x9137dfe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9137e000 - 0x9157cff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9157d000 - 0x917e2feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x918b7000 - 0x918f5ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x918f6000 - 0x9192dfe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x9192e000 - 0x91c4eff3  com.apple.CoreServices.CarbonCore 861.34 (861.34) <3DA9098F-B71B-4BDE-5DE5-4B76C49158EB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91c50000 - 0x91c65fff  com.apple.ImageCapture 6.0.2 (6.0.2) <E9F4B952-27A1-5BFC-CA8D-DADA055D30E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91c66000 - 0x92546ff7  com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92547000 - 0x92577ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x92578000 - 0x92585ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x92586000 - 0x92586ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92587000 - 0x9261ffe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92620000 - 0x92627ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <61A74CE1-750D-9CAB-B780-306841739EE1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92628000 - 0x92628ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92629000 - 0x926d6fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <C8925910-B927-968B-4B71-D83A4CEF8646> /usr/lib/libobjc.A.dylib
    0x926d7000 - 0x9271aff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9271b000 - 0x9281ffe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x92820000 - 0x92859ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <90C5DE81-1BEF-D807-A898-0FC19BDD14EC> /usr/lib/libcups.2.dylib
    0x9288d000 - 0x92a94feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92a95000 - 0x92b30ff7  com.apple.ApplicationServices.ATS 4.4 (???) <FD63F92B-8DDE-4DBA-A7A5-0294E3607083> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92b31000 - 0x92b8eff7  com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92b8f000 - 0x92be5ff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x92be6000 - 0x92ce8fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x92ce9000 - 0x92dddff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <061ABF36-8BA9-79C1-6CE7-EC69A4998F51> /usr/lib/libiconv.2.dylib
    0x92dde000 - 0x92e8cff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92e8d000 - 0x92e9afe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x92e9b000 - 0x92f54fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x92f55000 - 0x92f5aff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x92f5b000 - 0x92f6fffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92f70000 - 0x930f2fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D375C1CF-C88D-C5F6-3C49-CD429023FBAC> /usr/lib/libicucore.A.dylib
    0x930f3000 - 0x93417fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93418000 - 0x9349affb  SecurityFoundation ??? (???) <2E1F1AF0-A258-D215-2600-5DF03896D1F1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9349e000 - 0x934b0ff7  com.apple.MultitouchSupport.framework 207.10 (207.10) <32CE2895-DAF0-2137-F9BE-8150359F43A1> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x934fa000 - 0x93626ffb  com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93627000 - 0x93627ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93628000 - 0x937e2feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <C96F11A7-2569-3037-C4C3-0342708FA3CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x937e3000 - 0x93847ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x938b7000 - 0x938baff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B84D7376-EE9C-2B7F-04FA-D622E2C10CA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x938bb000 - 0x938ecff7  libGLImage.dylib ??? (???) <1AF72191-087A-5D75-B3B9-3F537315F635> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x938ed000 - 0x93905ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x93906000 - 0x93916ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93917000 - 0x93932ff7  libPng.dylib ??? (???) <65E824F7-523A-CC34-ABDD-2A3B12DE1CA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93933000 - 0x93d68ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93d69000 - 0x93e75ff7  libGLProgrammability.dylib ??? (???) <2D172B4E-432F-D18E-EA99-3BD56DBE7649> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93e76000 - 0x93ed7fe7  com.apple.CoreText 3.151.8 (???) <6F5D6C49-4693-B9B7-6612-832E8F155747> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93ed8000 - 0x9492bff7  com.apple.WebCore 6533.21 (6533.21.1) <09CE6602-4DB5-6E93-8593-4E1C57CB202F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9492c000 - 0x9497dff7  com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94b2e000 - 0x94beafff  com.apple.ColorSync 4.6.6 (4.6.6) <D00B95AE-2379-CB8E-B18C-FF5B66741C23> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94beb000 - 0x94beefe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x94bef000 - 0x94c81fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94c82000 - 0x94ccffeb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x94cd0000 - 0x94d9bfef  com.apple.CoreServices.OSServices 359 (359) <EC340F74-8192-C9DD-40B3-AE4E519A38D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94dd5000 - 0x94e7dffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94ea8000 - 0x94eb3ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <4560936D-7730-5DD2-BFD7-95270DDC210A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94eb4000 - 0x94efbffb  com.apple.CoreMediaIOServices 134.0 (1160) <4CD78557-3CDA-A4B5-33CB-BBB876B4463D> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94efc000 - 0x94f6bff7  com.apple.ISSupport 1.9.4 (52) <FC1E0AB0-1056-1CAC-430E-82197FEB5E85> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94fe0000 - 0x9501dff7  com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9501e000 - 0x95155ff7  com.apple.CoreAUC 6.04.05 (6.04.05) <4A2BEE1A-A74A-746B-EFA6-470CD3354252> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x95156000 - 0x9517cffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9517d000 - 0x95187ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95188000 - 0x9518aff7  libRadiance.dylib ??? (???) <B83179D4-E41C-D2BA-1E4C-A64CB45C15E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x951b2000 - 0x951baff7  com.apple.DisplayServicesFW 2.3.0 (283) <305F9514-2404-5CF7-AFB4-00BB4D2EA69E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x952fe000 - 0x95341ff7  libGLU.dylib ??? (???) <2C7B2727-26F6-F29D-9D15-33044E87359F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95342000 - 0x95342ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95386000 - 0x953adff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x953ae000 - 0x953b8ff7  com.apple.HelpData 2.0.5 (34.1.1) <A9CF754F-B254-5D40-B8B5-F35414DFD875> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x954c0000 - 0x9559affb  com.apple.DesktopServices 1.5.10 (1.5.10) <2BA08DD4-35A2-A0FF-ADEA-B381F0CEEB81> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x955b1000 - 0x955ecfeb  libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x955ed000 - 0x95615ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x95616000 - 0x95616ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9577a000 - 0x9577eff7  libGFXShared.dylib ??? (???) <4F2199F0-320F-0B59-0380-D3131D644CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9579e000 - 0x957acff7  com.apple.opengl 1.6.12 (1.6.12) <81AEF74E-E33A-B021-9CDB-6199104105FF> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x957ad000 - 0x9598ffff  com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95990000 - 0x959cdff7  com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x959e7000 - 0x95af6fe7  com.apple.WebKit 6533.21 (6533.21.1) <4FBCE2F9-84EB-302C-FD1F-DAD2422A219E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95af7000 - 0x95b06fe7  libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x95b07000 - 0x95b16ffb  SyndicationUI ??? (???) <AF180AD9-329E-A1D1-DACE-D759D3799C75> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x95b1c000 - 0x95b20ff7  libGIF.dylib ??? (???) <447BC6E8-4C56-3D5D-983B-6BEA0D26F319> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95b21000 - 0x95b27ff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <218EC7C4-0520-2D8C-62EE-AA82D35448FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95b28000 - 0x95b33ff7  libGL.dylib ??? (???) <4425B9AA-B494-A336-EABB-6BBC9FF4EC4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95b34000 - 0x95babff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95bac000 - 0x95bacff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x95bad000 - 0x95c27fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <A02CEAE9-943A-CBE2-2350-4631C1E7B0A7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95c28000 - 0x95c38ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x95c39000 - 0x95d75ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <781018FB-474B-E09C-D419-5BFF80590A10> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95d96000 - 0x95da1ff7  com.apple.CrashReporterSupport 10.6.7 (258) <71CC59D1-E197-7431-5973-2C079A749257> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x95da2000 - 0x96015fe7  com.apple.Foundation 6.6.6 (751.53) <C73FDD37-000B-C505-FD8D-80D1C9D17965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96016000 - 0x961bdff7  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    0x961be000 - 0x969ad557  com.apple.CoreGraphics 1.545.0 (???) <8A4CB0D9-1001-0F62-4DA4-B8AB3B45E226> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x969ae000 - 0x969aeff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x969af000 - 0x969b5fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x969b6000 - 0x969eeff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x969ef000 - 0x96c1aff3  com.apple.QuartzComposer 4.2 ({156.28}) <62E864AD-3155-59B8-BA1F-8197360C8587> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96c6c000 - 0x97bbffe3  com.apple.QuickTimeComponents.component 7.6.6 (1756.15) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x97bc0000 - 0x97c91fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <41417F73-42C5-FFC3-E7A1-EF94602CDCD6> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x97c92000 - 0x97cb6ff7  libJPEG.dylib ??? (???) <A50127EB-C202-0436-E62D-41E2E893E436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97cbf000 - 0x97cc3ff7  IOSurface ??? (???) <235E7E3D-B6E5-0AAA-C41A-7AC1F54A7EBF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97d65000 - 0x97da5ff7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <CE815114-CEFA-4AF4-7365-7908428AB733> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x980a0000 - 0x980f8fe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x980f9000 - 0x9813fff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9818a000 - 0x9818dff7  libCoreVMClient.dylib ??? (???) <12EF6056-7AC7-6691-75A2-BD0675C56A35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9818e000 - 0x981f8fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9842a000 - 0x98840ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x98841000 - 0x98cfaffb  com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x98d08000 - 0x98d32ff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x98d33000 - 0x98e76fef  com.apple.QTKit 7.6.6 (1756.15) <32C49374-14BC-53E7-FBFF-E11B42A41F56> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98e77000 - 0x98e78ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98e79000 - 0x98e95fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98e96000 - 0x99011fe7  com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99012000 - 0x9930bfef  com.apple.QuickTime 7.6.6 (1756.15) <C2567783-4EAC-6803-522B-D701B95C4DAE> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9930c000 - 0x9934eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9934f000 - 0x9934fff7  com.apple.Carbon 150 (152) <734BDB59-8B13-54FA-0653-AA8623DF9846> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x99350000 - 0x99383ffb  libTrueTypeScaler.dylib ??? (???) <574C2C51-65EC-7D2A-086D-C9312287DE22> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x99384000 - 0x9943bfeb  libFontParser.dylib ??? (???) <DDBBB503-5289-2E2B-AD35-F3BA00D00D5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9951b000 - 0x9953bfe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x99547000 - 0x995c0ff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x995c1000 - 0x9962fff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x99630000 - 0x9972cff3  com.apple.PubSub 1.0.5 (65.21) <50FE5190-7C03-3020-3CB7-4CA258F49114> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9972d000 - 0x99730ffb  com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x99767000 - 0x997e2fff  com.apple.AppleVAFramework 4.10.23 (4.10.23) <57B7C626-F344-AB15-8556-00425FA765DE> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x99861000 - 0x9986aff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9986b000 - 0x9986cff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <253E9552-5CEA-0D5A-1EDA-3B8F669B79EA> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9986d000 - 0x9996efe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x9999a000 - 0x999deff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x999f8000 - 0x99a19fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x99a1a000 - 0x99a4dff7  com.apple.AE 496.4 (496.4) <C73D124C-C722-41D8-3465-4CE0D0BA9307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x99a4e000 - 0x99a84fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x99a85000 - 0x99ab9fe7  com.apple.framework.Apple80211 6.2.4 (624.2) <8F619DF3-CE06-3D95-E2CF-CEAEE7BEC319> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x99aba000 - 0x99acbff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <02CCC192-2AC9-73DF-4A40-0B3AF87B6372> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <8697CB9C-AC3B-301B-F1BD-382E30FA5642> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,5, BootROM MBP55.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.47f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2250BH FFS G1, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0x04600000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000

    The folder with a question mark means the computer cannot find an OS to boot from.
    You've got a few options for getting the OS onto this new hard drive:
    1)If her old hard drive still works, you can put it in a Firewire enclosure and clone the data from the old hard drive to the new.
    2) Use the original install discs that came with the machine. If you can't find these, you can call up Apple & give them the serial number for the computer. Replacement discs aren't overly expensive.
    3) Last option is to use a retail copy of OS X to reinstall the OS on this computer. You'd have to make sure to purchase a copy that will work with your computer, and you would also be missing the iLife applications which are not included with a retail copy of OS X.
    If you need anything cleared up, let me know!
    ~Lyssa

Maybe you are looking for