Position of CONSTANT in "IF" statement

Hi,
I get an
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
on the following statement:
IF MY_CONSTANTS = myVar THEN
which goes away when i change the order of the vars getting compared.:
IFmyVar = MY_CONSTANTS THEN
I am busy porting some jave code to PL/SQL and the usual way of avoiding NullPointerException:
if (MY_CONSTANTS.equals(myVar)) {}
Has to change order.
I cannot see any rule about this anywhere.
Is there something else i'm missing here?
Thanks
Buks

I can not create your error.
declare
const_int constant number(4)  := 4444;
const_str constant varchar2(4) :='test';
test_null_int  number(1) := null;
test_null_str  varchar2(1) := null;
begin
     if const_int = 22222 then
       null;
     end if;
     if const_int = test_null_int then
       null;
     end if;
     if const_int = 44 then
       null;
     end if;
     if const_str = '22222' then
       null;
     end if;
     if const_str = test_null_str then
       null;
     end if;
     if const_str = '44' then
       null;
     end if;
end;People have asked you for a larger sample of the code and the actual datatypes involved. Is there a reason you have not supplied them?
Bob.

Similar Messages

  • Package constant in select statement

    In my Package has several consatnt values...
    CREATE OR REPLACE PACKAGE xoec IS
    EXPIRED_DESC CONSTANT VARCHAR2(20) := 'Expired';
    LIVE CONSTANT VARCHAR2(1) := 'L';
    LIVE_DESC CONSTANT VARCHAR2(20) := 'Live';
    CANCELLED CONSTANT VARCHAR2(1) := 'X';
    CANCELLED_DESC CONSTANT VARCHAR2(20) := 'Cancelled';
    END ;
    I want to display the constant in Select statement.
    select xoec.live from dual;
    The above statement through error.
    Please help to fix it.
    Regards
    Mani

    This is one of examples.
    CREATE OR REPLACE PACKAGE xoec IS
      EXPIRED_DESC CONSTANT VARCHAR2(20) := 'Expired';
      LIVE CONSTANT VARCHAR2(1) := 'L';
      LIVE_DESC CONSTANT VARCHAR2(20) := 'Live';
      CANCELLED CONSTANT VARCHAR2(1) := 'X';
      CANCELLED_DESC CONSTANT VARCHAR2(20) := 'Cancelled';
      function get(in_vc varchar2) return varchar2;
    END ;
    CREATE OR REPLACE
    PACKAGE BODY xoec IS
      function get(in_vc varchar2) return varchar2
      is
      begin
        if    upper(in_vc) = 'EXPIRED_DESC' then
           return EXPIRED_DESC;      
        elsif upper(in_vc) = 'LIVE' then
           return LIVE;
        elsif upper(in_vc) = 'LIVE_DESC' then
           return LIVE_DESC;
        elsif upper(in_vc) = 'CANCELLED' then
           return CANCELLED;
        elsif upper(in_vc) = 'CANCELLED_DESC' then
           return CANCELLED_DESC;
        else
           null; -- somthing error raising
        end if;
      end;
    END;
    SQL> select xoec.get('live') from dual;
    XOEC.GET('LIVE')
    L

  • Using CONSTANT in Condition Statement

    Hi
    What I am trying to do is put CONSTANT into IN Condition Statement.
    When I use Bind variables just like :bind, It works properly
    But What if I use as a CONTANT, It doesn't work.
    In my opinion, parenthesis is not work well.
    Please help me out
    thanks in advance and below is PL/SQL CODE
    PROCEDURE PROC_MAIN
    iUserID          IN     VARCHAR2,
    iJobID IN VARCHAR2
    ) AS
    C_AGENT CONSTANT VARCHAR(20) := '10,11';
    C_staff CONSTANT VARCHAR(20) := '40';
    C_newStaff CONSTANT VARCHAR(20) := '50';
    C_ETC CONSTANT VARCHAR(20) := '20,30';
    BEGIN
    vJobId :=
    CASE iJobID
    WHEN '41' THEN C_AGENT
    WHEN '42' THEN C_staff
    WHEN '43' THEN C_newStaff
    WHEN '40' THEN C_ETC
    END;
    insert into tbl_monthly
    (emp_no, salary)
    select emp_no, salary from tbl_emp
    where Staff_cat in vJobId ;
    end;
    Message was edited by:
    allbory

    Hi,
    Please check the changes:
    Note: table_name is changed to test.
    CREATE OR REPLACE PROCEDURE PROC_MAIN
    iUserID IN VARCHAR2,
    iJobID IN VARCHAR2
    ) AS
    C_AGENT CONSTANT VARCHAR(20) := '10,11';
    C_staff CONSTANT VARCHAR(20) := '40';
    C_newStaff CONSTANT VARCHAR(20) := '50';
    C_ETC CONSTANT VARCHAR(20) := '20,30';
    vJobId          VARCHAR2(20);BEGIN
    vJobId :=
    CASE iJobID
    WHEN '41' THEN C_AGENT
    WHEN '42' THEN C_staff
    WHEN '43' THEN C_newStaff
    WHEN '40' THEN C_ETC
    END;
    EXECUTE IMMEDIATE 'INSERT INTO tbl_monthly(empno, salary) SELECT empno, sal FROM scott.emp WHERE deptno IN ('||vJobId||')' ;
    END;

  • How to use Constants in Switch statements?

    Hello all,
    The following code snippet gives error, please give me guidance.
    ========
    static Object tokenize(StreamTokenizer st)
    throws NumberFormatException, IOException {
    Object token = null;
    try {
    if (st.nextToken() == st.TT_EOF) {
    throw new EOFException();
    } catch (IOException e) {
    throw e;
    switch(st.ttype) {
    case st.TT_NUMBER:
    token = new Double(st.nval);
    break;
    case st.TT_WORD:
    token = st.sval;
    break;
    case st.TT_EOL:
    throw new NumberFormatException();
    default:
    throw new NumberFormatException();
    return token;
    =================
    regards.

    Perhaps it wants you to do "StreamTokenizer.TT_WORD" rather than "st.TT_WORD".
    Why catch IOException, just to throw it again?

  • Using "Enum constant" in state machine.

    hallo all.
    i bild state machine, with 10 states. i move beetwen the states with Enum constant.
    my qustion is: if i want to add/delete some  states, why i need to update the Enum constant at every state ?
    there is  way to update "Enum constant" at one state, and  all other "Enum constant"(in other states) will update automatically
    thanks

    If you save you enum as a type def and replace all of the current occurences of the enum wi the type def, you shoud there after only have to update teh typedef.
    1) Find an oocurance of the enum
    2) Right-click and change to control.
    3) Find control and select Advanced customize
    3) Pull down on selector and change from "control" to "type def"
    4) Save control.
    5) close editor and when prompeted say yes to replace control.
    6) Change control back to constant
    7) replcae all previous occurances by choosing replace >>> the typedef'd control.
    8) Case structure will folow typed def from that point forward.
    Ben
    Message Edited by Ben on 12-24-2006 03:31 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Constants v/s compile time constants.

    Hi to all.
    I got a problem in understanding compile time constants.
    I was reading about switch statement, and found a fact:
    the case constant in switch statement should be compile time constant.
    and example they have given is:
    final int a=1;
    final int b;
    b=2;
    int x=0;
    switch(x)
    case a: //ok.
    case b: //compiler error.
    so is it true, that compile time constants are only those which are final and are initialized at the time of declaration itself.
    then what b will be called, "runtime constant" (sounds odd).

    I once read on a post here (or article) that the
    compiler will replace any variable name you set in
    the switch case with the actual value. That is why
    it
    works on 'a' but not on 'b'. At compile time the
    compiler only knows the value of 'a'.
    That is not why you can use a but not b for the
    switch. The reason is that the compiler knows the
    value of a but not of b.
    What's the difference?

  • Using named parameters with an sql UPDATE statement

    I am trying to write a simple? application on my Windows 7 PC using HTML, Javascript and Sqlite.  I have created a database with a 3 row table and pre-populated it with data.  I have written an HTML data entry form for modifying the data and am able to open the database and populate the form.  I am having trouble with my UPDATE function.  The current version of the function will saves the entry in the last row of the HTML table into the first two rows of the Sqlite data table -- but I'm so worn out on this that I can't tell if it is accidental or the clue I need to fix it.
    This is the full contents of the function . . .
         updateData = new air.SQLStatement();
         updateData.sqlConnection = conn;
         updateData.text = "UPDATE tablename SET Gsts = "Gsts, Gwid = :Gwid, GTitle = :GTitle WHERE GId = ":GId;
              var x = document.getElementsById("formname");
              for (var i = 1, row, row = x.rows[i]; i++) {
                   updateData.parameters[":GId"] = 1;
                   for (var j = 0, col; col=row.cells[j]; j++) {
                        switch(j) {
                             case 0: updateData.parameters[":GTitle"] = col.firstChild.value; break;
                             case 1: updateData.parameters[":Gsts"] = col.firstChild.value; break;
                             case 2: updateData.parameters[":Gwid"] = col.firstChild.value; break;
    Note: When I inspect the contents of the col.firstChild.value cases, they show the proper data as entered in the form -- it just isn't being updated into the proper rows of the Sqlite table.
    Am I using the named parameters correctly? I couldn't find much information on the proper use of parameters in an UPDATE statement.

    Thank you for the notes.  Yes, the misplaced quotes were typos.  I'm handtyping a truncated version of the function so I don't put too much info in the post. And yes, i = 1 'cuz the first rows of the table are titles.  So the current frustration is that I seem to be assigning all the right data to the right parameters but nothing is saving to the database.
    I declare updateData as a variable at the top of the script file
    Then I start a function for updating the data which establishes the sql connection as shown above.
    The correctly typed.text statement is:
            updateData.text = "UPDATE tablename SET Gsts=:Gsts, Gwid=:Gwid, GTitle=:GTitle WHERE GId=:GId";
    (The data I'm saving is entered in text boxes inside table cells.) And the current version of the loop is:
            myTable = document.getElementById("GaugeSts");
            myRows= myTable.rows;
              for(i=1, i<myRows.length, i++) {
                   updateData.parameters[":GId"]=i;
                   for(j=0; j<myRows(i).cells.length, j++) {
                        switch(y) {
                             case 0: updateData.parameters[":GTitle"]=myrows[i].cells[y].firstChild.value; break;
                             case 1: updateData.parameters[":Gsts"]=myrows[i].cells[y].firstChild.value; break;
                             case 2: updateData.parameters[":Gwid"]=myrows[i].cells[y].firstChild.value; break;
                             updateData.execute;
    The whole thing runs without error and when I include the statements to check what's in myrows[i].cells[y].firstChild.value, I'm seeing that the correct data is being picked up for assignment to the parameters and the update. I haven't been able to double check that the contents of the parameters are actually taking the data 'cuz I don't know how to extract the data from the parameters. ( The only reference  I've found so far has said that it is not possible. I'm still researching that one.) I've also tried moving the position of the updateData execution statement to several different locations in the loop andstill nothing updates. 
    I am using a combination of air.Introspector.Console.log to check the results of code and I'm using Firefox's SQlite manager to handle the database.  The database is currently sitting on the Desktop to facilitate testing and I have successfully updated/changed data in this table through the SQLite Manager so I don't think I'm having permission errors and, see below, I have another function successfully saving data to another table.
    I currently have another function that uses ? for the parametersin the .text of a INSERT/REPLACE statement and that one works fine.  But, only one line of data is being saved so there is no loop involved.  I tried changing the UPDATE statement in this function to the INSERT/REPLACE just to make something save back to the database but I can't make that one work either.I've a (And, I've tried so many things now, I don't even remember what actually saved something --albeit incorrectly --to the database in one of my previous iterations with the for loops.)
    I'm currently poring through Sqlite and Javascript tomes to see if I can find what's missing but if anything else jumps out at you with the corrected code, I'd appreciate some ideas.
    Jeane

  • SQL History - returning wrong statement if history is sorted

    I have searched the forum and not seen anything on this, but I have been getting the wrong SQL statement returned when I select Append/Replace.
    I have statements going back to 12-Jan-06 (using 804 since 13-Jan-06, 796 since 12-Jan-06 and 715 last year), so I don't know if I have hit the aging limit or not (I think I counted 221 entries).
    It seems to me that it works out the cursor position and then returns that statement number from the history - independently of resorting the history.
    For example, if I sort from oldest to newest (based on timestamp) and then select the bottom statement (displays as newest) and Replace, I get the oldest statement in the worksheet. If I select the top statement (displays as oldest) and Replace, I get the newest statement in the worksheet.
    This is further complicated by the fact that sorting on the Timestamp is doing an alpha-numeric sort, rather than a date sort. When sorting from oldest to newest, the bottom three timestamps are (in "oldest to newest" order) are:
    1/23/06 10:58 AM
    1/23/06 9:21 AM
    1/23/06 9:31 AM
    If I then remove the sorting, the statement returned is the correct one.

    It was great to get the fix for the SQL History returning the right statement if sorted (we got it in v1184).
    However v1215 still does a text sort on the TimeStamp column rather than a date sort, so 2PM comes before 9AM, etc.
    Also, where is the format for the TimeStamp column coming from? As someone who doesn't live in the US and thinks that days should come before months in date formats (ie DD-Mon-YYYY), I am frustrated by yet another product that uses MM/DD/YY, despite my best efforts at telling it otherwise.

  • Adobe FLEX State Handling Using FB 3.

    Hi to all.
    I am new to flex , having a problem with states working .
    i am able to go to sub state but unable to go to base state.
    Kindly view code, and suggest how to set <Base State> as current state.
    Thanks.
    <mx:states>
    <!--<mx:SetEventHandler target="{btn2}" name="click" handler="currentState='';"-->
    <mx:State name="AddNew">
    <mx:SetProperty    target="{btn1}" name="label" value="Ok"/>
    <mx:SetProperty target="{btn2}" name="label" value="Cancel"/>
    <mx:SetProperty target="{panel1}" name="title" value="Welcome New User."/>
    <mx:RemoveChild target="{lblpasshlp}"/>
    <mx:RemoveChild target="{imgbox}"/>
    <mx:SetEventHandler
    target="{btn1}"
    name="click"  handler="AddNew()"/>
    <mx:SetEventHandler target="{btn2}" name="click" handler="currentState='';"/>
    <mx:AddChild position="lastChild" target="{panel1}"/>
    <mx:SetProperty name="width" value="315"/>
    <mx:SetProperty name="height" value="215"/>
    <mx:SetProperty target="{panel1}" name="width" value="295"/>
    <mx:SetProperty target="{panel1}" name="height" value="195"/>
    <mx:SetProperty target="{lblmessage}" name="x" value="165"/>
    </mx:State>
    <mx:State name="LoginFailed">
    <mx:SetProperty name="height" value="215"/>
    <mx:RemoveChild target="{btn2}"/>
    <mx:SetProperty target="{lblUN}"  name="text" value="Your Question"/>
    <mx:SetProperty target="{lblpass}"  name="text" value="Your Answer"/>
    <mx:SetProperty target="{btn1}" name="label" value="Check"/>
    <mx:SetProperty target="{lblmessage}"  name="text" value="Authentication"/>
    <mx:SetProperty target="{lblmessage}"  name="x" value="174"/>
    <mx:RemoveChild target="{lblpasshlp}"/>
    <mx:RemoveChild target="{imgbox}"/>
    <mx:SetProperty name="width" value="315"/>
    <mx:SetEventHandler target="{btn1}" name="click" handler="currentState='ResetPassword'"/>
    <mx:SetProperty target="{panel1}" name="title" value="Login Failed"/>
    </mx:State>
    <mx:State name="ResetPassword" basedOn="LoginFailed">
    <mx:SetProperty target="{lblUN}" name="text" value="New Password"/>
    <mx:RemoveChild target="{lblpass}"/>
    <mx:RemoveChild target="{txtPassword}"/>
    <mx:SetProperty target="{btn1}" name="label" value="Update"/>
    <mx:SetProperty target="{lblmessage}" name="text" value="Reset Password"/>
    <mx:SetProperty name="width" value="315"/>
    <mx:SetProperty name="height" value="215"/>
    <mx:SetStyle name="horizontalAlign" value="center"/>
    <mx:SetStyle name="verticalAlign" value="middle"/>
    <mx:SetProperty target="{panel1}" name="title" value="Change Password"/>
    <mx:SetProperty target="{panel1}" name="width" value="295"/>
    <mx:AddChild relativeTo="{panel1}" position="before" target="{panel1}"/>
    </mx:State>
         </mx:states>

    hi,
    currentState='""    should return you to the base state;
    David. 

  • Renaming typedef file caused constants reset

    Hello!
    Here's a short description of the problem I encountered:
    I renamed the filename of the typedef that was used in my state machine for state coding (see for example State Machine template shipped with LV). As result I lost values of ALL constants that coded states in my state machine, i.e. they were reset to value of the first value in state enum.
    Note: when opening state machine that used the typedef
    I got the message something like "VI was changed in memory. Reload from disk or view from the memory?". And 2 buttons: View and Discard. I clicked "View".
    Then after restoring all constants manually, I saved my work to archive and tried to rename typedef file again, the result was the same - all constants reset to first value of enum.
    I restored files from archive, again renamed typedef file,
    then closed my app WITHOUT saving state machine that used typedef. After opening my program I got the message "Searching for my typedef", pressed "Browse..." and loaded typedef from renamed file. Constants were left without any change (uh-r-r-a!).
    Before posting this message to forum I tried to make an example to show the problem, but o-o-ps I failed to do it.
    It didn't repeat even with my program.
    This post can't be considered as bug report, as I can't repeat the problem. But I think the problem exists as I lost values of all constants after renaming typedef file, and this is the fact.
    So my advice (that old as the world) to everybody is to save work even when innocent actions are made such as renaming typedef file names.
    Probably somebody encountered this problem and knows how to repeat it.
    Thanks for attention.
    Any comments appreciated.
    Rashid.
    Using LV 8.0 (LV Run Time Engine 8.0.1) on Win XP with Russian locale, all VIs used in my programs have names in cyrillic sometimes mixed with english letters, e.g. "russian name (typedef).ctl".

    Hello, Charlie,
    I can say absolutely sure that I always used LabView to rename my typedef file. I never use Windows Explorer to rename typedef files (or any other LV files) in my practice.
    Besides, when the values of my constants were reset there wasn't any broken wires. The block diagram wasn't corrupted. Everything was fine except default values of my constants. Due to that I noticed this error a little later - after renaming typedef file I ran my program and couldn't understand why it fails to act as should. When debugging this problem I went down to my state machine and only then I saw that all my state constants are reset to default values.
    I never used "Substitute copy for original". I used only
    "Rename" when renaming my typedef file.
    I didn't add any items to my typedef. The only things I did are:
    - renaming my typedef enum label in the *.ctl file;
    - and "Save as.." -> "Rename..." - renaming my typedef file.
    Besides, when I did try renaming 2nd time to reproduce such behaviour: I left typedef enum label without change and the behaviour was the same.
    So, such behaviour (loosing constant values) I get TWO times.
    But after I worked around this (see 1st post) I couldn't already reproduce this behaviour.
    If I'll succeed in this one more time again, and be able to reproduce this behaviour, I'll certainly post to you my steps.
    Thanks for attention.
    Rashid.
    P.S.
    1. As to broken wires if I get it right - in your case you added new items to typedef but your case structure in state machine was not updated to contain new states handlers. If so, then it's obvious why you got broken wires. But as I didn't change the typedef itself (only renamed it), I didn't get broken wires.
    2. I wouldn't be surprised if I'd have done something in the weird way: I mean renaming by Explorer or saving, closing and so on. I was doing everything from the LabView environment. As far as I remember I didn't rename the state machine vi file at that, only typedef file. And my state machine was always opened. The only file I was opening/renaming/closing was typedef file. And as far as I remember I opened it by "File -> Open..." and not right-clicking at constant and "Open TypeDef..".
    3. I understand that my description is foggy :-) and that it's difficult to find this weird set of steps, but who knows. Anyway I appreciate your help.Message Edited by Rashid on 06-13-2006 12:03 PM

  • BT Infinity checker states Brentwood as enabled - ...

    I'm sure I'm not the only frustrated one in this position.
    The online checker states that Brentwood exchange is enabled for infinity (apperantly one of the first in the country).
    However, a check against my phone number states that I cant get Infinity. The max I get is ADSL at 1mbit.
    I know that all cabinets are not active but I can't get any information as to which cabinet I connect to and when that will be enabled for Infinity.
    I can't get any help from the BT customer service dept.
    Any help would be appreciated.

    Hi NotBehondInfinity,
    Thanks for the post and welcome to the forum.  I may be able to find out what is going on here.  I cant make any promises but I will certainly see what I can do.
    Please drop me an email via the 'Contact Us' link in my profile. (click on my name and you will find the link under the "about me" section). Include your BT account details and the link to this thread.
    Cheers
    Sean
    BTCare Community Manager
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Elapsed Time delay only works once in state machine

    Hello.  I'm having problems using the elapsed time delay to show the seconds remaining on a wait step in a simple state machine.  I would like to have a front panel count down showing the time left for the step.  I thought the elapsed time delay was the way to do this.  The problem is the vi runs correctly the first time through.  But then after that the timing does not seem to reset back to the times I had set.  If I remove the elapsed time delay and just stick a wait time in the state, the vi runs as I would expect.  This just doesn't give the user an idea of the time remaining.  What am I missing when using the elapsed time delay, or is this just the wrong tool for the job?
    A smaller issue is that I would like to move the tasks, in this case the LED's outside the loop so I don't have to repeat code.  But when I tried moving them outside with only leaving the constants inside the state they did not work as I expected.  If you have tasks like the operation of a set of booleans that you are used in several states, what is the cleanest way to do this without repeating code?
    Thanks for the help.
    Danny
    Solved!
    Go to Solution.
    Attachments:
    Elapsed Time Delay.vi ‏39 KB

    The problem is that the Auto Reset on the express VI resets the start time of the timer as soon as the time has completed.  So you are essentially restarting the #1 timer immediately and then go on to #2.  Once #2 is completed, #1 has already passed 10 seconds as well.
    What you need to do is use the reset input for the express VI, but only have that be true the first time it is called.  By using a shift register and the implies function on those loops, you can do that.
    As for the duplication of states, don't have a state 1 and a state 2.  Just have a Run state.  Use a shift register to maintain a value for what your next state will be and a case structure to based on that to show what booleans should be lit and what the next state will be.
    Message Edited by Ravens Fan on 06-12-2009 10:56 AM
    Attachments:
    Example_VI_BD.png ‏2 KB

  • Can I use applescript to export PDF search results from "preview"?

    My question is about "Preview". I have a very large PDF document that I am using preview to view. After doing a search for a specific word, preview has returned 1200 results. The results panel shows the page number the result is found on and the line of text on which the searched-for-word is found.
    My question is this: Is there a way to export this information from preview to something like an excel file? The end result would look like a table with two columns. One with the page numbers and one with the line of text in which the word appears.
    Is this something that can be done with applescript? I don't know if the system even stores that kind of information... /sigh. Any help is appreciated.

    Using Preview.app, I have done a search for the word “AppleScript” in the PDF version of the AppleScript Language Guide. Then, I have used the following script to retrieve the information displayed in the results panel.
    tell application "Preview" to activate
    tell application "System Events" to tell process "Preview"
    return value of text field 1 of rows of outline 1 of scroll area 2 of splitter group 1 of window 1
    end tell
    --> {missing value, "AppleScript Language Guide (Page 1)", "AppleScript Language Guide (Page 1)", "Contents (Page 4)", "Contents (Page 4)", "Contents (Page 9)", "Figures, Tables, and Listings (Page 11)", "Figures, Tables, and Listings (Page 11)", "Introduction (Page 14)", "Introduction (Page 14)", "Introduction (Page 15)", "Introduction (Page 16)", "AppleScript Lexical Conventions", "Identifiers", "Keywords", "Literals and Constants", "Record", "Variables", "Statements", "Raw Codes", "AppleScript Fundamentals", "Script Editor Application", "What Is in a Script Object", "Properties", "What Is in an Object Specifier", "Absolute and Relative Object Specifiers", "Object Specifiers in Reference Objects", "Coercion (Object Conversion) (Page 32)", "Coercion (Object Conversion) (Page 32)", "Scripting Additions", "Types of Commands", "Parameters That Specify Locations", "AppleScript Constant", "text item delimiters", "version", "true, false Constants", "The it and me Keywords", "Specifying Paths", "Working With Files", "eppc-Style Specifiers", "Debugging AppleScript Scripts", "Third Party Debuggers", "Defining Properties", "Local Variables", "Using the copy and set Commands", "Scope of Variables and Properties", "Scope of Properties and Variables Declared in a Script Object (Page 54)", "Scope of Properties and Variables Declared in a Script Object (Page 54)", "Scope of Properties and Variables Declared in a Script Object (Page 55)", "Scope of Variables Declared in a Handler", "Script Objects", "Defining Script Objects", "Initializing Script Objects", "Inheritance in Script Objects", "Defining Inheritance Through the parent Property", "Using the continue Statement in Script Objects (Page 63)", "Using the continue Statement in Script Objects (Page 63)", "Defining a Simple Handler", "Handlers with Labeled Parameters", "Handlers with Patterned Positional Parameters", "Recursive Handlers", "Calling Handlers in a tell Statement", "Saving and Loading Libraries of Handlers", "idle Handlers", "Calling a Script Application From a Script", "alias", "application (Page 80)", "application (Page 80)", "boolean (Page 83)", "boolean (Page 83)", "class", "constant", "date (Page 87)", "date (Page 88)", "integer", "list (Page 91)", "list (Page 91)", "real", "record (Page 95)", "record (Page 95)", "script", "text (Page 98)", "text (Page 99)", "text (Page 100)", "text (Page 101)", "text (Page 102)", "unit types", "Commands Reference (Page 107)", "Commands Reference (Page 107)", "activate", "ASCII number", "copy", "count", "display dialog (Page 127)", "display dialog (Page 127)", "do shell script", "get", "get eof", "launch", "open for access", "path to (application)", "run", "run script", "say", "set (Page 155)", "set (Page 155)", "summarize", "system info", "write", "Arbitrary", "Filter (Page 169)", "Filter (Page 169)", "ID", "Index", "Middle", "Operators Reference (Page 179)", "Operators Reference (Page 181)", "Operators Reference (Page 181)", "Operators Reference (Page 182)", "Operators Reference (Page 183)", "Operators Reference (Page 184)", "Operators Reference (Page 185)", "Operators Reference (Page 186)", "text (Page 102)", "Examples", "date (Page 87)", "considering / ignoring (text comparison) (Page 194)", "considering / ignoring (text comparison) (Page 194)", "considering / ignoring (application responses)", "error Statements", "error", "if (compound)", "exit", "repeat (forever)", "repeat until", "repeat while", "repeat with loopVariable (from startValue to stopValue)", "repeat with loopVariable (in list)", "tell Statements", "tell (compound)", "try (Page 208)", "try (Page 208)", "using terms from Statements", "with timeout", "with transaction", "continue", "return", "Handler Syntax (Labeled Parameters)", "Calling a Handler with Labeled Parameters (Page 217)", "Calling a Handler with Labeled Parameters (Page 217)", "Handler Syntax (Positional Parameters)", "Folder Actions Reference", "adding folder items to", "closing folder window for", "opening folder", "removing folder items from", "Appendix A: AppleScript Keywords (Page 227)", "Appendix A: AppleScript Keywords (Page 228)", "Appendix A: AppleScript Keywords (Page 229)", "Appendix A: AppleScript Keywords (Page 231)", "Appendix A: AppleScript Keywords (Page 231)", "Appendix A: AppleScript Keywords (Page 232)", "AppleScript Errors", "Operating System Errors", "Catching Errors in a Handler (Page 238)", "Catching Errors in a Handler (Page 238)", "Simplified Error Checking", "When a Dictionary Is Not Available", "Entering Script Information in Raw Format", "List of Unsupported Terms", "Glossary (Page 245)", "Glossary (Page 246)", "Glossary (Page 247)", "Glossary (Page 249)", "Glossary (Page 249)", "Glossary (Page 250)", "Revision History", "Symbols", "B (Page 254)", "B (Page 254)", "G", "I", "M", "R", "S"}
    Many items don't have any page number. Is that what you are asking for?

  • Mail quits when email is selected to view content of email

    Every time email is selected Mail shuts down with error message shown below
    Thread 14 Crashed:
    0 libSystem.B.dylib 0x00007fff87cc9fde _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x00007fff87cc9ee0 nanosleep$NOCANCEL + 129
    2 libSystem.B.dylib 0x00007fff87d26886 usleep$NOCANCEL + 57
    3 libSystem.B.dylib 0x00007fff87d45e3c abort + 93
    4 libstdc++.6.dylib 0x00007fff803485d2 _tcf0 + 0
    5 libobjc.A.dylib 0x00007fff84d8ad29 objcterminate + 100
    6 libstdc++.6.dylib 0x00007fff80346ae1 _cxxabiv1::_terminate(void (*)()) + 11
    7 libstdc++.6.dylib 0x00007fff80346b16 _cxxabiv1::_unexpected(void (*)()) + 0
    8 libstdc++.6.dylib 0x00007fff80346bfc _gxx_exception_cleanup(_Unwind_ReasonCode, UnwindException*) + 0
    9 libobjc.A.dylib 0x00007fff84d87192 object_getIvar + 0
    10 com.apple.CoreFoundation 0x00007fff85874267 +[NSException raise:format:arguments:] + 103
    11 com.apple.CoreFoundation 0x00007fff858741f4 +[NSException raise:format:] + 148
    12 com.apple.Foundation 0x00007fff879d6ac3 -[NSCFDictionary setObject:forKey:] + 227
    13 ...apple.AddressBook.framework 0x00007fff81773050 -[ABRecord nts_DescriptionDictionary] + 832
    14 ...apple.AddressBook.framework 0x00007fff817729bf -[ABRecord nts_Description] + 39
    15 ...apple.AddressBook.framework 0x00007fff817711ba -[ABRecord description] + 67
    16 com.apple.CoreFoundation 0x00007fff85855e1c -[NSObject(NSObject) _copyDescription] + 44
    17 com.apple.CoreFoundation 0x00007fff857f7ba9 _CFStringAppendFormatAndArgumentsAux + 6089
    18 com.apple.CoreFoundation 0x00007fff857f639d _CFStringCreateWithFormatAndArgumentsAux + 109
    19 com.apple.datadetectorscore 0x00007fff83842f1d DDLogv + 24
    20 com.apple.datadetectorscore 0x00007fff83842f03 DDLog + 162
    21 com.apple.datadetectorscore 0x00007fff83845e75 DDABSourceLoadData + 488
    22 com.apple.datadetectorscore 0x00007fff83845c88 DDLookupTableLoadAddressBook + 26
    23 com.apple.datadetectors 0x00007fff82faf0c8 -[DDPatternCompiler createScanner:] + 118
    24 com.apple.Foundation 0x00007fff879e4e99 _NSThread__main_ + 1429
    25 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    26 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13

    I just did Repair Disk Permissions while booted normally. The log says:
    Repairing permissions for “Macintosh iMac HD”
    Permissions differ on "usr/share/derby", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "usr/share/derby".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions repair complete
    I tried to open email in all 4 mailboxes resulting in four crashes. In all four cases the From - To - Subj - comes up momentarily but the failure occurs prior to the content coming up. When I look at the same email on my Powerbook (OS X 10.6.2) the process is normal without failure. The problem report says it is being sent to Apple automatically. The complete report follows:
    Process: Mail [276]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 4.2 (1077)
    Build Info: Mail-10770000~4
    Code Type: X86-64 (Native)
    Parent Process: launchd [98]
    Date/Time: 2010-01-20 20:11:45.202 -0500
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 63544 sec
    Crashes Since Last Report: 58
    Per-App Interval Since Last Report: 42631 sec
    Per-App Crashes Since Last Report: 57
    Anonymous UUID: 5AF70020-BFC7-4FF5-A30B-3B608E195A9B
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 17
    Application Specific Information:
    -[iToolsAccount _fetchUnreadCountsCheckForNewMessages:]
    -[iToolsAccount _synchronizeAccountWithServerWithUserInput:]
    -[iToolsAccount _invalidateMailboxWithName:expunge:URLToCompact:]
    abort() called
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: Unique ID)'
    * Call stack at first throw:
    0 CoreFoundation 0x00007fff85874444 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff84d870f3 objcexceptionthrow + 45
    2 CoreFoundation 0x00007fff85874267 +[NSException raise:format:arguments:] + 103
    3 CoreFoundation 0x00007fff858741f4 +[NSException raise:format:] + 148
    4 Foundation 0x00007fff879d6ac3 -[NSCFDictionary setObject:forKey:] + 227
    5 AddressBook 0x00007fff81773050 -[ABRecord nts_DescriptionDictionary] + 832
    6 AddressBook 0x00007fff817729bf -[ABRecord nts_Description] + 39
    7 AddressBook 0x00007fff817711ba -[ABRecord description] + 67
    8 CoreFoundation 0x00007fff85855e1c -[NSObject(NSObject) _copyDescription] + 44
    9 CoreFoundation 0x00007fff857f7ba9 _CFStringAppendFormatAndArgumentsAux + 6089
    10 CoreFoundation 0x00007fff857f639d _CFStringCreateWithFormatAndArgumentsAux + 109
    11 DataDetectorsCore 0x00007fff83842f1d DDLogv + 24
    12 DataDetectorsCore 0x00007fff83842f03 DDLog + 162
    13 DataDetectorsCore 0x00007fff83845e75 DDABSourceLoadData + 488
    14 DataDetectorsCore 0x00007fff83845c88 DDLookupTableLoadAddressBook + 26
    15 DataDetectors 0x00007fff82faf0c8 -[DDPatternCompiler createScanner:] + 118
    16 Foundation 0x00007fff879e4e99 _NSThread__main_ + 1429
    17 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    18 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libicucore.A.dylib 0x00007fff80a9d33e utrie_unserializeDummy + 754
    1 libicucore.A.dylib 0x00007fff80a328e2 utrie_serialize + 756
    2 libicucore.A.dylib 0x00007fff80a48126 ubrk_swap + 13408
    3 libicucore.A.dylib 0x00007fff80a45969 ubrk_swap + 3235
    4 libicucore.A.dylib 0x00007fff80a461d2 ubrk_swap + 5388
    5 libicucore.A.dylib 0x00007fff80a2f67b ubrk_openRules + 125
    6 com.apple.WebCore 0x00007fff82701518 WebCore::cursorMovementIterator(unsigned short const*, int) + 184
    7 com.apple.WebCore 0x00007fff8270141b WebCore::RenderText::previousOffset(int) const + 27
    8 com.apple.WebCore 0x00007fff826ee9ef WebCore::Position::inRenderedText() const + 143
    9 com.apple.WebCore 0x00007fff8269ae0e WebCore::Position::isCandidate() const + 94
    10 com.apple.WebCore 0x00007fff8269a331 WebCore::VisiblePosition::canonicalPosition(WebCore::Position const&) + 81
    11 com.apple.WebCore 0x00007fff8269a1b5 WebCore::VisiblePosition::init(WebCore::Position const&, WebCore::EAffinity) + 37
    12 com.apple.WebCore 0x00007fff82701266 WebCore::RenderBlock::positionForPointWithInlineChildren(WebCore::IntPoint const&) + 486
    13 com.apple.WebCore 0x00007fff82700ffb WebCore::RenderBlock::positionForPoint(WebCore::IntPoint const&) + 379
    14 com.apple.WebCore 0x00007fff827a1ce0 WebCore::positionForPointRespectingEditingBoundaries(WebCore::RenderBox*, WebCore::RenderBox*, WebCore::IntPoint const&) + 144
    15 com.apple.WebCore 0x00007fff8270106d WebCore::RenderBlock::positionForPoint(WebCore::IntPoint const&) + 493
    16 com.apple.WebCore 0x00007fff827a19b7 WebCore::Frame::visiblePositionForPoint(WebCore::IntPoint const&) + 151
    17 com.apple.WebKit 0x00007fff87457ca1 -[WebView(WebPrivate) textIteratorForRect:] + 113
    18 com.apple.datadetectors 0x00007fff82faf98b -[WebView(DDExtension) dd_computeQuery:inRect:] + 182
    19 com.apple.datadetectors 0x00007fff82faf851 -[DDHTMLMessageScanningOperation initWithWebView:forFrame:threadManager:] + 152
    20 com.apple.datadetectors 0x00007fff82faf738 -[DDThreadManager queueTextToScanInFrame:identifier:forView:delegate:] + 87
    21 com.apple.datadetectors 0x00007fff82faf440 -[DDDetectorManager detectWithIdentifier:context:forWebView:] + 342
    22 com.apple.datadetectors 0x00007fff82faf2c1 -[DDDetectorManager detectWebViewContent:context:] + 112
    23 com.apple.mail 0x000000010009dcb4 0x100000000 + 646324
    24 com.apple.CoreFoundation 0x00007fff8584a0dc _invoking__ + 140
    25 com.apple.CoreFoundation 0x00007fff85849fad -[NSInvocation invoke] + 141
    26 com.apple.mail 0x000000010009dc26 0x100000000 + 646182
    27 com.apple.WebKit 0x00007fff8743b5db CallFrameLoadDelegate(objc_object* ()(objc_object, objc_selector*, ...), WebView*, objc_selector*, objc_object*) + 139
    28 com.apple.WebKit 0x00007fff874481ff WebFrameLoaderClient::dispatchDidFinishLoad() + 79
    29 com.apple.WebCore 0x00007fff825d9c11 WebCore::FrameLoader::checkLoadCompleteForThisFrame() + 305
    30 com.apple.WebCore 0x00007fff825d9a2a WebCore::FrameLoader::recursiveCheckLoadComplete() + 282
    31 com.apple.WebCore 0x00007fff82640862 WebCore::FrameLoader::finishedLoading() + 178
    32 com.apple.WebCore 0x00007fff826406ff WebCore::MainResourceLoader::didFinishLoading() + 47
    33 com.apple.WebCore 0x00007fff825f56a2 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 1122
    34 com.apple.WebCore 0x00007fff825f520f WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 127
    35 com.apple.WebCore 0x00007fff825f44ae WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 1918
    36 com.apple.WebCore 0x00007fff8279f0b6 WebCore::MainResourceLoader::handleDataLoadNow(WebCore::RunLoopTimer<WebCore::M ainResourceLoader>*) + 342
    37 com.apple.CoreFoundation 0x00007fff85811a58 __CFRunLoopRun + 6488
    38 com.apple.CoreFoundation 0x00007fff8580fc2f CFRunLoopRunSpecific + 575
    39 com.apple.HIToolbox 0x00007fff844bda4e RunCurrentEventLoopInMode + 333
    40 com.apple.HIToolbox 0x00007fff844bd853 ReceiveNextEventCommon + 310
    41 com.apple.HIToolbox 0x00007fff844bd70c BlockUntilNextEventMatchingListInMode + 59
    42 com.apple.AppKit 0x00007fff85d291f2 _DPSNextEvent + 708
    43 com.apple.AppKit 0x00007fff85d28b41 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    44 com.apple.AppKit 0x00007fff85cee747 -[NSApplication run] + 395
    45 com.apple.AppKit 0x00007fff85ce7468 NSApplicationMain + 364
    46 com.apple.mail 0x0000000100002150 0x100000000 + 8528
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff87c6fbba kevent + 10
    1 libSystem.B.dylib 0x00007fff87c71a85 dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff87c7175c dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff87c71286 dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff87c70bb8 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 2: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x00007fff87c56e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff87c574ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff858107a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8580fc2f CFRunLoopRunSpecific + 575
    4 com.apple.MessageFramework 0x00007fff875ba8e7 _handleRequestWithTimeout + 1608
    5 com.apple.MessageFramework 0x00007fff875bce4c -[_NSSocket readBytes:length:error:] + 177
    6 com.apple.MessageFramework 0x00007fff875bca74 -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 95
    7 com.apple.MessageFramework 0x00007fff875bc86d -[Connection _fillBuffer:] + 593
    8 com.apple.MessageFramework 0x00007fff875bc4fc -[Connection _readLineIntoData:error:] + 70
    9 com.apple.MessageFramework 0x00007fff875bc472 -[IMAPConnection _readLineIntoData:error:] + 57
    10 com.apple.MessageFramework 0x00007fff875bc33d -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 142
    11 com.apple.MessageFramework 0x00007fff875bbe99 -[IMAPResponse initWithConnection:error:] + 165
    12 com.apple.MessageFramework 0x00007fff875bbdbb -[IMAPConnection _copyNextServerResponse:] + 54
    13 com.apple.MessageFramework 0x00007fff875c3b7e -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 163
    14 com.apple.MessageFramework 0x00007fff875c219e -[IMAPConnection(MFPrivate) _responseFromSendingOperation:] + 976
    15 com.apple.MessageFramework 0x00007fff875c811c -[IMAPConnection executeListOrLSub:] + 200
    16 com.apple.MessageFramework 0x00007fff875c1ac2 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1465
    17 com.apple.MessageFramework 0x00007fff875c0f09 -[IMAPGateway _allowClientOperationThrough:] + 800
    18 com.apple.MessageFramework 0x00007fff875c092f -[IMAPGateway allowClientOperationThrough:] + 374
    19 com.apple.MessageFramework 0x00007fff875c078b -[IMAPClientOperation main] + 81
    20 com.apple.Foundation 0x00007fff87a0e06d -[__NSOperationInternal start] + 681
    21 com.apple.Foundation 0x00007fff87a0dd23 ___startOperations_block_invoke2 + 99
    22 libSystem.B.dylib 0x00007fff87c92ce8 dispatch_call_block_andrelease + 15
    23 libSystem.B.dylib 0x00007fff87c71279 dispatch_workerthread2 + 231
    24 libSystem.B.dylib 0x00007fff87c70bb8 pthreadwqthread + 353
    25 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 3:
    0 libSystem.B.dylib 0x00007fff87c56e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff87c574ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff858107a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8580fc2f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff87a1fa24 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff87a1f903 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff87586a89 -[RSSInterchange _runManager] + 1445
    7 com.apple.Foundation 0x00007fff879e4e99 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13
    Thread 4: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x00007fff87c919ee _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff87c957f1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff805562b3 ***::TCMalloc_PageHeap::scavengerThread() + 515
    3 com.apple.JavaScriptCore 0x00007fff805562f9 ***::TCMalloc_PageHeap::runScavengerThread(void*) + 9
    4 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13
    Thread 5: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x00007fff87c56e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff87c574ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff858107a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8580fc2f CFRunLoopRunSpecific + 575
    4 com.apple.MessageFramework 0x00007fff875ba8e7 _handleRequestWithTimeout + 1608
    5 com.apple.MessageFramework 0x00007fff875bce4c -[_NSSocket readBytes:length:error:] + 177
    6 com.apple.MessageFramework 0x00007fff875bca74 -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 95
    7 com.apple.MessageFramework 0x00007fff875bc86d -[Connection _fillBuffer:] + 593
    8 com.apple.MessageFramework 0x00007fff875bc4fc -[Connection _readLineIntoData:error:] + 70
    9 com.apple.MessageFramework 0x00007fff875bc472 -[IMAPConnection _readLineIntoData:error:] + 57
    10 com.apple.MessageFramework 0x00007fff875bc33d -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 142
    11 com.apple.MessageFramework 0x00007fff875bbe99 -[IMAPResponse initWithConnection:error:] + 165
    12 com.apple.MessageFramework 0x00007fff875bbdbb -[IMAPConnection _copyNextServerResponse:] + 54
    13 com.apple.MessageFramework 0x00007fff875c3b7e -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 163
    14 com.apple.MessageFramework 0x00007fff875f7860 -[IMAPConnection executeIdle:] + 176
    15 com.apple.MessageFramework 0x00007fff875c1ac2 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1465
    16 com.apple.MessageFramework 0x00007fff875c0f09 -[IMAPGateway _allowClientOperationThrough:] + 800
    17 com.apple.MessageFramework 0x00007fff875c092f -[IMAPGateway allowClientOperationThrough:] + 374
    18 com.apple.MessageFramework 0x00007fff875c078b -[IMAPClientOperation main] + 81
    19 com.apple.Foundation 0x00007fff87a0e06d -[__NSOperationInternal start] + 681
    20 com.apple.Foundation 0x00007fff87a0dd23 ___startOperations_block_invoke2 + 99
    21 libSystem.B.dylib 0x00007fff87c92ce8 dispatch_call_block_andrelease + 15
    22 libSystem.B.dylib 0x00007fff87c71279 dispatch_workerthread2 + 231
    23 libSystem.B.dylib 0x00007fff87c70bb8 pthreadwqthread + 353
    24 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 6: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x00007fff87c56e9a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x00007fff87c956e2 pthread_condwait + 1015
    2 com.apple.Foundation 0x00007fff87a41f93 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 161
    3 com.apple.Foundation 0x00007fff87a41ed8 -[NSOperation waitUntilFinishedOrTimeout:] + 58
    4 com.apple.MessageFramework 0x00007fff875c0691 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 184
    5 com.apple.MessageFramework 0x00007fff875c057a -[IMAPGateway waitUntilClientOperationIsFinished:] + 426
    6 com.apple.MessageFramework 0x00007fff875bf50e -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 394
    7 com.apple.MessageFramework 0x00007fff875d8fb0 -[IMAPGateway listingForMailbox:options:listingInfo:] + 101
    8 com.apple.MessageFramework 0x00007fff875b5bd4 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 389
    9 com.apple.MessageFramework 0x00007fff875b56ae -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 96
    10 com.apple.MessageFramework 0x00007fff875b55ed -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 67
    11 com.apple.MessageFramework 0x00007fff875b48c2 -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 325
    12 com.apple.MessageFramework 0x00007fff875b3ea2 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 43
    13 com.apple.CoreFoundation 0x00007fff8584a0dc _invoking__ + 140
    14 com.apple.CoreFoundation 0x00007fff85849fad -[NSInvocation invoke] + 141
    15 com.apple.MessageFramework 0x00007fff875883f1 -[MonitoredInvocation invoke] + 214
    16 com.apple.MessageFramework 0x00007fff8756f888 -[ThrowingInvocationOperation main] + 31
    17 com.apple.MessageFramework 0x00007fff8756f1c8 -[_MFInvocationOperation main] + 275
    18 com.apple.Foundation 0x00007fff87a0e06d -[__NSOperationInternal start] + 681
    19 com.apple.Foundation 0x00007fff87a0dd23 ___startOperations_block_invoke2 + 99
    20 libSystem.B.dylib 0x00007fff87c92ce8 dispatch_call_block_andrelease + 15
    21 libSystem.B.dylib 0x00007fff87c71279 dispatch_workerthread2 + 231
    22 libSystem.B.dylib 0x00007fff87c70bb8 pthreadwqthread + 353
    23 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 7: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x00007fff87c56e82 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x00007fff87c5c3cd pthreadmutexlock + 469
    2 com.apple.Foundation 0x00007fff879d7375 -[NSRecursiveLock lock] + 25
    3 com.apple.MessageFramework 0x00007fff875eda74 -[IMAPConnectionPool yieldGateway:] + 57
    4 com.apple.MessageFramework 0x00007fff875ed106 -[IMAPGateway yield] + 54
    5 com.apple.MessageFramework 0x00007fff875dd697 -[IMAPAccount _fetchUnreadCountsForMailboxUid:recursively:gateway:checkForNewMessages:] + 309
    6 com.apple.MessageFramework 0x00007fff875dd12a -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 419
    7 com.apple.CoreFoundation 0x00007fff8584a0dc _invoking__ + 140
    8 com.apple.CoreFoundation 0x00007fff85849fad -[NSInvocation invoke] + 141
    9 com.apple.MessageFramework 0x00007fff875883f1 -[MonitoredInvocation invoke] + 214
    10 com.apple.MessageFramework 0x00007fff8756f888 -[ThrowingInvocationOperation main] + 31
    11 com.apple.MessageFramework 0x00007fff8756f1c8 -[_MFInvocationOperation main] + 275
    12 com.apple.Foundation 0x00007fff87a0e06d -[__NSOperationInternal start] + 681
    13 com.apple.Foundation 0x00007fff87a0dd23 ___startOperations_block_invoke2 + 99
    14 libSystem.B.dylib 0x00007fff87c92ce8 dispatch_call_block_andrelease + 15
    15 libSystem.B.dylib 0x00007fff87c71279 dispatch_workerthread2 + 231
    16 libSystem.B.dylib 0x00007fff87c70bb8 pthreadwqthread + 353
    17 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff87c56e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff87c574ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff858107a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8580fc2f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff87a1fa24 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff87a1f903 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff875b976c +[_NSSocket _runIOThread] + 78
    7 com.apple.Foundation 0x00007fff879e4e99 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff87c709da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff87c70dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 10:
    0 libSystem.B.dylib 0x00007fff87c709da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff87c70dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 11:
    0 libSystem.B.dylib 0x00007fff87c709da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff87c70dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 12:
    0 libSystem.B.dylib 0x00007fff87c9a9e2 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff85832242 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13
    Thread 13:
    0 libSystem.B.dylib 0x00007fff87c709da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff87c70dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 14: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x00007fff87c56e82 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x00007fff87c5c3cd pthreadmutexlock + 469
    2 com.apple.MessageFramework 0x00007fff875bf581 -[IMAPGateway connection] + 24
    3 com.apple.MessageFramework 0x00007fff875cba12 -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 70
    4 com.apple.MessageFramework 0x00007fff875a125d -[IMAPConnectionPool checkOutGatewayForExistingConnectionToMailbox:] + 389
    5 com.apple.MessageFramework 0x00007fff875a1057 -[IMAPAccount _invalidateMailboxWithName:expunge:URLToCompact:] + 38
    6 com.apple.CoreFoundation 0x00007fff8584a0dc _invoking__ + 140
    7 com.apple.CoreFoundation 0x00007fff85849fad -[NSInvocation invoke] + 141
    8 com.apple.MessageFramework 0x00007fff8756f888 -[ThrowingInvocationOperation main] + 31
    9 com.apple.MessageFramework 0x00007fff8756f1c8 -[_MFInvocationOperation main] + 275
    10 com.apple.Foundation 0x00007fff87a0e06d -[__NSOperationInternal start] + 681
    11 com.apple.Foundation 0x00007fff87a0dd23 ___startOperations_block_invoke2 + 99
    12 libSystem.B.dylib 0x00007fff87c92ce8 dispatch_call_block_andrelease + 15
    13 libSystem.B.dylib 0x00007fff87c71279 dispatch_workerthread2 + 231
    14 libSystem.B.dylib 0x00007fff87c70bb8 pthreadwqthread + 353
    15 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 15:
    0 libSystem.B.dylib 0x00007fff87c709da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff87c70dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff87c70a55 start_wqthread + 13
    Thread 16:
    0 libSystem.B.dylib 0x00007fff87c56e9a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x00007fff87c956e2 pthread_condwait + 1015
    2 ...apple.AddressBook.framework 0x00007fff8171e9b3 -[ABRemoteImageLoader workLoop] + 304
    3 com.apple.Foundation 0x00007fff879e4e99 _NSThread__main_ + 1429
    4 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13
    Thread 17 Crashed:
    0 libSystem.B.dylib 0x00007fff87cc9fde _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x00007fff87cc9ee0 nanosleep$NOCANCEL + 129
    2 libSystem.B.dylib 0x00007fff87d26886 usleep$NOCANCEL + 57
    3 libSystem.B.dylib 0x00007fff87d45e3c abort + 93
    4 libstdc++.6.dylib 0x00007fff803485d2 _tcf0 + 0
    5 libobjc.A.dylib 0x00007fff84d8ad29 objcterminate + 100
    6 libstdc++.6.dylib 0x00007fff80346ae1 _cxxabiv1::_terminate(void (*)()) + 11
    7 libstdc++.6.dylib 0x00007fff80346b16 _cxxabiv1::_unexpected(void (*)()) + 0
    8 libstdc++.6.dylib 0x00007fff80346bfc _gxx_exception_cleanup(_Unwind_ReasonCode, UnwindException*) + 0
    9 libobjc.A.dylib 0x00007fff84d87192 object_getIvar + 0
    10 com.apple.CoreFoundation 0x00007fff85874267 +[NSException raise:format:arguments:] + 103
    11 com.apple.CoreFoundation 0x00007fff858741f4 +[NSException raise:format:] + 148
    12 com.apple.Foundation 0x00007fff879d6ac3 -[NSCFDictionary setObject:forKey:] + 227
    13 ...apple.AddressBook.framework 0x00007fff81773050 -[ABRecord nts_DescriptionDictionary] + 832
    14 ...apple.AddressBook.framework 0x00007fff817729bf -[ABRecord nts_Description] + 39
    15 ...apple.AddressBook.framework 0x00007fff817711ba -[ABRecord description] + 67
    16 com.apple.CoreFoundation 0x00007fff85855e1c -[NSObject(NSObject) _copyDescription] + 44
    17 com.apple.CoreFoundation 0x00007fff857f7ba9 _CFStringAppendFormatAndArgumentsAux + 6089
    18 com.apple.CoreFoundation 0x00007fff857f639d _CFStringCreateWithFormatAndArgumentsAux + 109
    19 com.apple.datadetectorscore 0x00007fff83842f1d DDLogv + 24
    20 com.apple.datadetectorscore 0x00007fff83842f03 DDLog + 162
    21 com.apple.datadetectorscore 0x00007fff83845e75 DDABSourceLoadData + 488
    22 com.apple.datadetectorscore 0x00007fff83845c88 DDLookupTableLoadAddressBook + 26
    23 com.apple.datadetectors 0x00007fff82faf0c8 -[DDPatternCompiler createScanner:] + 118
    24 com.apple.Foundation 0x00007fff879e4e99 _NSThread__main_ + 1429
    25 libSystem.B.dylib 0x00007fff87c8ff8e pthreadstart + 331
    26 libSystem.B.dylib 0x00007fff87c8fe41 thread_start + 13
    Thread 17 crashed with X86 Thread State (64-bit):
    rax: 0x000000000000003c rbx: 0x0000000116585150 rcx: 0x0000000116585108 rdx: 0x0000000000000001
    rdi: 0x0000000000000c03 rsi: 0x0000000000000000 rbp: 0x0000000116585140 rsp: 0x0000000116585108
    r8: 0x0000000000000000 r9: 0x0000000000989680 r10: 0x0000000000000001 r11: 0x0000000000000246
    r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x00007fff8642a178 r15: 0x0000000000000000
    rip: 0x00007fff87cc9fde rfl: 0x0000000000000247 cr2: 0x0000000115fb2000
    Binary Images:
    0x100000000 - 0x100338fe7 com.apple.mail 4.2 (1077) <A3B6D6AE-FBD2-15AE-46BA-5B27D9E85786> /Applications/Mail.app/Contents/MacOS/Mail
    0x1138ca000 - 0x1138ddff7 com.apple.AddressBook.LocalSourceBundle 1.0.1 (864) <157AB366-BDEE-6FA9-94FD-CA027086D2BA> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x1138e9000 - 0x1138ecfff com.apple.yahoo.syncframework 1.3 (51) <AEBB9A2D-B787-0C74-7C40-64E6F0BBF43C> /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
    0x114963000 - 0x114969fff com.apple.AddressBook.LDAPSource 1.0.1 (864) <A13EB3DE-9B6F-A74F-B653-3442B0A03AE4> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
    0x115a93000 - 0x115af2fff com.apple.google.GoogleContactSyncFramework 39 (39) <BD6B36C2-620E-DBC2-71A9-ECE0F627DE22> /System/Library/PrivateFrameworks/GoogleContactSync.framework/Versions/A/Google ContactSync
    0x115e83000 - 0x115ea6fff com.apple.Mail.Syncer 4.2 (1077) <A4CD23F8-C0FB-2587-9250-A3954B0A27F5> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff8000efff com.apple.CrashReporterSupport 10.6.2 (239) <9A14C43B-69B0-842E-3149-2F580DC13A50> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8000f000 - 0x7fff80049fff libssl.0.9.8.dylib ??? (???) <0714FA32-C193-CD96-80D1-6FCF06A0ED2E> /usr/lib/libssl.0.9.8.dylib
    0x7fff8005c000 - 0x7fff800a0fef com.apple.ImageCaptureCore 1.0 (1.0) <29A6CF83-B5C2-9730-D71D-825AEC8657F5> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff800bd000 - 0x7fff80149fef SecurityFoundation ??? (???) <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8014a000 - 0x7fff80185ff7 com.apple.AE 496.1 (496.1) <27D2D2E9-B309-7E65-8C3F-7FF01148F0DE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff80186000 - 0x7fff801a1ff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff802fc000 - 0x7fff80379fef libstdc++.6.dylib ??? (???) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff8037a000 - 0x7fff8038dfff libGL.dylib ??? (???) <5F9DAF5F-C25C-B6C2-C9BC-3D91D723FD85> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8038e000 - 0x7fff803affff libresolv.9.dylib ??? (???) <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff803b0000 - 0x7fff803faff7 com.apple.DAVKit 4.0.1 (730) <57B9EB89-C7A4-1F7B-4B09-0873CC557555> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x7fff803fb000 - 0x7fff80424ff7 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <2D3B7CF8-DA92-F25D-F2E2-D17C7D7F46E5> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x7fff80425000 - 0x7fff80434fef com.apple.opengl 1.6.5 (1.6.5) <30D6B03B-4B4C-1F78-1FDB-0403E7FE8707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff80435000 - 0x7fff80448ff7 com.apple.syncservices.syncservicesui 5.1 (578) <E103A7E4-EAD3-53F4-601A-E854870469FF> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x7fff80449000 - 0x7fff805cefef com.apple.JavaScriptCore 6531.21 (6531.21.9) <FB6CF9E3-A3B1-8C45-1D91-756679DE36FB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff805cf000 - 0x7fff8062ffff com.apple.ExchangeWebServices 1.1 (56) <76BE6B3A-45B7-0FD3-CE9F-A0616C79B26E> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x7fff80630000 - 0x7fff80739fff com.apple.MediaToolbox 0.420.18 (420.18) <0A2444E8-DA72-7DC8-084F-D78D28E5C74F> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff8073a000 - 0x7fff80878fff com.apple.CoreData 102.1 (250) <8DDA49A1-F78C-DE30-8B58-EBC49E4E7ABF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff80880000 - 0x7fff808e8ff7 com.apple.MeshKitRuntime 1.0 (49.0) <580F1945-540B-1E68-0341-A6ADAD78397E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff808e9000 - 0x7fff80966fe7 com.apple.CoreText 3.1.0 (???) <B4BFF82D-CA77-9A8E-2C7E-66367E807C7C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8099d000 - 0x7fff809bbfff libPng.dylib ??? (???) <7635B74B-5415-9767-A881-E0B017F62376> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff809bc000 - 0x7fff809bcff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff809bd000 - 0x7fff80a0cff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff80a0d000 - 0x7fff80bcbfff libicucore.A.dylib ??? (???) <5BD16988-545F-6A8C-9A6F-FB18ACDCAEC2> /usr/lib/libicucore.A.dylib
    0x7fff80bcc000 - 0x7fff80c3efef com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff80c3f000 - 0x7fff80c42ff7 libCoreVMClient.dylib ??? (???) <1C6D04BA-5F78-CC4D-26CB-7904919042B9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff80c82000 - 0x7fff80d37fe7 com.apple.ink.framework 1.3.1 (105) <5AA00FE5-B251-44AF-5108-44AA927C053C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff80d38000 - 0x7fff80d73fe7 com.apple.CoreMedia 0.420.18 (420.18) <30166EED-C905-A818-9C3C-32E4EEA20995> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff80e6d000 - 0x7fff80ea2fff libGLImage.dylib ??? (???) <8AB3A26A-4CC4-4E6D-95CC-530FD7204599> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff80ea3000 - 0x7fff8100fff7 com.apple.QTKit 7.6.3 (1591.3) <2AD2AC43-F6A8-F2CE-CCFE-9E8E38E47BB0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff81010000 - 0x7fff81011ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <98969AA3-2394-34B5-2DC3-7F4187E96D26> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff81012000 - 0x7fff81017fff libGIF.dylib ??? (???) <9DB87A71-27B7-A909-461B-F886DB2BD622> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff81018000 - 0x7fff8103bff7 com.apple.iChat.IMFoundation 5.0.1 (744) <C06AE6AC-F5F3-EC30-426A-0C9C81658B56> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x7fff8103c000 - 0x7fff81276ff7 com.apple.imageKit 2.0.1 (1.0) <5E32976B-5CEB-6316-2B5C-2ABFEF588E4F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff81277000 - 0x7fff8127dff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff81294000 - 0x7fff81294ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff81295000 - 0x7fff812a6fef libz.1.dylib ??? (???) <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff812a7000 - 0x7fff812b9fe7 libsasl2.2.dylib ??? (???) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff812ba000 - 0x7fff812deff7 com.apple.CoreVideo 1.6.0 (43.1) <FF310442-03F4-648D-4CD2-D7AC459901D5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff812df000 - 0x7fff812e7ff7 com.apple.NSServerNotificationCenter 2 (1.0) <0F9B07B8-D9F9-A55D-AB60-9CC3533D77F8> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x7fff812e8000 - 0x7fff812edfff libGFXShared.dylib ??? (???) <05345B3E-5705-3C2A-464E-052B1DDA45B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff812ee000 - 0x7fff81686fff com.apple.QuartzCore 1.6.1 (227.8) <E296B174-F7CB-F021-D103-091CCB33BBEB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81687000 - 0x7fff81707ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <04677A98-142E-9C0E-18A7-4C74275856B7> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x7fff81708000 - 0x7fff81708ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff81709000 - 0x7fff81943fff com.apple.AddressBook.framework 5.0.1 (864) <4FA65C25-3F4F-6D79-1901-07FF6BBAAEDB> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff81944000 - 0x7fff81973ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff81974000 - 0x7fff8197bfff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8197c000 - 0x7fff819b9fff com.apple.LDAPFramework 2.0 (120.1) <05A853F5-76B9-AF27-6548-A2450AE86451> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff819ba000 - 0x7fff81eb2ff7 com.apple.VideoToolbox 0.420.18 (420.18) <428CE263-C02B-421D-7772-FC73EFF180A3> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff81eb3000 - 0x7fff81ef4ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <FFCA91A7-ADDB-E3D0-234A-47609BC37556> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff81ef5000 - 0x7fff81ef6ff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff81ef7000 - 0x7fff81f54fef com.apple.framework.IOKit 2.0 (???) <EBBEED67-D5BE-5F7F-96F4-9023BBA1B913> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff81f55000 - 0x7fff82245ff3 com.apple.RawCamera.bundle 2.3.0 (505) <E65CF964-5AFF-805A-E24C-4A9E2E3D4759> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff82246000 - 0x7fff824affff com.apple.QuartzComposer 4.1 (156.10) <F5569DC9-15E9-0815-3032-7E1257F36A3E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff82520000 - 0x7fff82567fef com.apple.QuickLookFramework 2.1 (327.3) <6B3D79C5-E19B-97E1-673F-74731A0B188B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff82568000 - 0x7fff8256eff7 IOSurface ??? (???) <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8256f000 - 0x7fff82facfe7 com.apple.WebCore 6531.21 (6531.21.8) <04C92586-679B-00A5-E3BE-590A0E9BCB11> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff82fad000 - 0x7fff82fc8fff com.apple.datadetectors 2.0 (102.0) <D3E026E9-C12A-88ED-25FC-7A58E435AB02> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x7fff82fc9000 - 0x7fff83035ff7 com.apple.CorePDF 1.1 (1.1) <3D51A551-50C5-DDD5-9A79-9679DA2806B0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff83036000 - 0x7fff83840fe7 libBLAS.dylib ??? (???) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff83841000 - 0x7fff838a3fe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff838a4000 - 0x7fff838a4ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff838a5000 - 0x7fff83929fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <33C0EADA-243E-1897-335D-17C5DC6A14A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8392a000 - 0x7fff839f5fe7 ColorSyncDeprecated.dylib ??? (???) <1D97E664-75D3-E483-FDD3-35BD7733DF13> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff839f6000 - 0x7fff83a4dfff com.apple.Symbolication 1.1 (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff83a4e000 - 0x7fff83a4eff7 com.apple.Carbon 150 (152) <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff83a4f000 - 0x7fff83b1bfff com.apple.CFNetwork 454.5 (454.5) <319C7138-2839-DA5E-413A-618248BD4A32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff83b1c000 - 0x7fff83b1efff libRadiance.dylib ??? (???) <376EAE92-8F25-9202-CC35-8EED5BD471FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff83b1f000 - 0x7fff83b58ff7 com.apple.MeshKit 1.0 (49.0) <7587A7F2-DF5D-B8B2-A6A8-1389CF28BC51> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff83b59000 - 0x7fff83b97fef com.apple.DebugSymbols 1.1 (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff83b98000 - 0x7fff83d78fff com.apple.CalendarStore 4.0.1 (973) <5A6D8FC7-F5C7-4FCA-FB31-7EB186EBC790> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x7fff83d79000 - 0x7fff83f33fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <10202E28-34DD-71CA-BE5D-1BE5C8DE2198> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff83f34000 - 0x7fff83f6efff com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff83f6f000 - 0x7fff83fc4fef com.apple.framework.familycontrols 2.0 (2.0) <8DD78DC7-4C73-EDE6-86A4-BC35B335ED5F> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff83fc5000 - 0x7fff84000ff7 com.apple.CoreMediaIOServices 124.0 (850) <B71C361C-105E-EDD2-5AEE-10E640445561> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff84001000 - 0x7fff84444fef libLAPACK.dylib ??? (???) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff84445000 - 0x7fff8448eff7 com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8448f000 - 0x7fff8478dfe7 com.apple.HIToolbox 1.6.2 (???) <D463A388-244E-047A-E49A-4DA6C15BD1BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8478e000 - 0x7fff84796fff com.apple.iChat.IMUtils 5.0.1 (744) <A2956C75-C9E3-D609-17F2-A40D3BA2BD6C> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x7fff84797000 - 0x7fff84837fff com.apple.LaunchServices 362 (362) <CCBFC037-7162-E392-B11F-90098891AE20> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff84838000 - 0x7fff8483bff7 com.apple.securityhi 4.0 (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8483c000 - 0x7fff84879fef libFontRegistry.dylib ??? (???) <8712832A-A980-3AAF-0D88-50164898F38E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8487a000 - 0x7fff848a2fff com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff848a3000 - 0x7fff848b1ff7 libkxld.dylib ??? (???) <568C35E7-B101-3F1E-0361-3E1E9F15C90B> /usr/lib/system/libkxld.dylib
    0x7fff848b2000 - 0x7fff8496eff7 libFontParser.dylib ??? (???) <99DEA723-9D02-2361-E3C7-034E25C5B829> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8496f000 - 0x7fff8497efff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff849c6000 - 0x7fff849c7fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff849c8000 - 0x7fff849cefff com.apple.AOSNotification 1.1.0 (123.3) <9436ED02-186A-E6CC-E594-31E3942A5898> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x7fff849cf000 - 0x7fff84a16ff7 com.apple.coreui 2 (113) <60D2FE5C-8470-A0F4-379B-1E90FBD4FE7D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff84b18000 - 0x7fff84bccff7 com.apple.ColorSync 4.6.2 (4.6.2) <78A86D96-7758-6BFE-7231-A0C70F185FDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff84bcd000 - 0x7fff84bcefff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff84bcf000 - 0x7fff84be3ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff84be4000 - 0x7fff84be6fef com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x7fff84c1c000 - 0x7fff84d33fef libxml2.2.dylib ??? (???) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff84d7d000 - 0x7fff84e33fff libobjc.A.dylib ??? (???) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff84e34000 - 0x7fff84e4afef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff84e4b000 - 0x7fff84e76ff7 libxslt.1.dylib ??? (???) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff84e77000 - 0x7fff84ec1fef com.apple.IMCore 5.0.1 (744) <32F01A93-564E-4A0A-7A59-76DB29E054A0> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x7fff84ec2000 - 0x7fff851f4fef com.apple.CoreServices.CarbonCore 861.2 (861.2) <39F3B259-AC2A-792B-ECFE-4F3E72F2D1A5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff853d9000 - 0x7fff85423ff7 com.apple.Metadata 10.6.2 (507.4) <A28A5E0C-DCDC-A5CE-4EB7-39752E63956A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff85455000 - 0x7fff8555fff7 com.apple.MeshKitIO 1.0 (49.0) <66600E25-66F9-D31A-EA47-E81518FF6DDA> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff8559c000 - 0x7fff856baff7 com.apple.PubSub 1.0.4 (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff856c7000 - 0x7fff856c7ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff856eb000 - 0x7fff8572efff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff8572f000 - 0x7fff8572fff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff85730000 - 0x7fff857bffff com.apple.PDFKit 2.5 (2.5) <7849E675-4289-6FEA-E314-063E91A4B07F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff857c0000 - 0x7fff857c4ff7 libmathCommon.A.dylib ??? (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff857c5000 - 0x7fff85938ff7 com.apple.CoreFoundation 6.6.1 (550.13) <1E952BD9-37C6-16BE-B2F0-CD92A6283D37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff85939000 - 0x7fff8596eff7 libcups.2.dylib ??? (???) <B7854E3A-784F-5033-1A47-CF2AE40C5855> /usr/lib/libcups.2.dylib
    0x7fff859a0000 - 0x7fff859a4ff7 libCGXType.A.dylib ??? (???) <E11B4D25-2251-4646-118C-87BD4C57A194> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff859a5000 - 0x7fff859e8ff7 libRIP.A.dylib ??? (???) <9CA0768E-C2DF-61FD-F475-DB48F4219B49> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff859e9000 - 0x7fff859f6ff7 com.apple.AppleFSCompression 1.0 (1.0) <06099990-D14E-CBD3-8E6A-23905A3B4A48> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff859f7000 - 0x7fff85a48fe7 com.apple.HIServices 1.8.0 (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff85a49000 - 0x7fff85a61fff com.apple.iChat.InstantMessage 5.0.1 (744) <0D312A5A-78EA-AD6C-9492-C822F3DD1D03> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x7fff85a62000 - 0x7fff85a6ffe7 libCSync.A.dylib ??? (???) <F4066C8C-2A3E-4F2F-9F4D-03DB56F7C5CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff85a70000 - 0x7fff85af2fe7 com.apple.QuickLookUIFramework 2.1 (327.3) <A35335F3-BC7B-1341-D934-45ACC19FFEC3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff85af3000 - 0x7fff85b6eff7 com.apple.ISSupport 1.9.2 (50) <09D926B6-BBF7-7E15-2978-D0C4D933543D> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff85b77000 - 0x7fff85c5bfff com.apple.DesktopServices 1.5.3 (1.5.3) <F443ED58-3761-116F-A8B2-C6DC29B7D119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff85c83000 - 0x7fff85c94fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff85c95000 - 0x7fff85ce4fef libTIFF.dylib ??? (???) <796A1E6E-09B0-64F4-35F7-2ACEE9C2B429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff85ce5000 - 0x7fff866d9fff com.apple.AppKit 6.6.3 (1038.25) <2F7A5AC8-29E7-9B5F-D3F1-4C7F5821BB80> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff866da000 - 0x7fff86757fef com.apple.backup.framework 1.2 (1.2) <E3635A09-6221-71CE-6083-6025CE478634> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff86758000 - 0x7fff8676eff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <2BBD800A-0456-D90D-3205-8CE61F3A8F05> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8676f000 - 0x7fff86795fe7 libJPEG.dylib ??? (???) <89DFAA03-2801-BB31-1F4D-1AE0804E08BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff86796000 - 0x7fff8679dff7 com.apple.KerberosHelper 2.1 (1.0) <CAE238A0-1DEC-421D-EE11-36AE9E67C8DC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x7fff8679e000 - 0x7fff8681dfff com.apple.audio.CoreAudio 3.2.2 (3.2.2) <2633DFAC-F6A6-489D-8DF0-F12639CCD8C4> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8681e000 - 0x7fff86f12537 com.apple.CoreGraphics 1.536.12 (???) <0DCA088B-0C6B-146F-0341-9E0212B5CA50> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff87141000 - 0x7fff87161ff7 com.apple.DirectoryService.Framework 3.6 (621.1) <FC0C2E15-84E2-B4A8-18EE-3AE620111627> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff87192000 - 0x7fff87192ff7 com.apple.vecLib 3.5 (vecLib 3.5) <5B072584-9579-F54F-180E-5D425B37E85C> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff87226000 - 0x7fff8723bff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <E83DAF4F-F284-BE0B-3D9D-D573023098B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8723c000 - 0x7fff8726dfef libTrueTypeScaler.dylib ??? (???) <8291D9BB-97B2-AD06-D565-58A14A20D617> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff8726e000 - 0x7fff872affef com.apple.QD 3.33 (???) <3F528878-21F5-B2B5-8A9B-DF067BF91922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff87365000 - 0x7fff873b1fff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff873b2000 - 0x7fff873d4ff7 com.apple.opencl 12 (12) <533D6753-D6E4-EC34-E93B-8F6498B50FBA> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff873d5000 - 0x7fff873dbfff libCGXCoreImage.A.dylib ??? (???) <B6A66067-68D9-7644-B4AF-EEA3B2AACA8D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff8742a000 - 0x7fff87568ff7 com.apple.WebKit 6531.21 (6531.21.8) <1B786776-E9EA-3B88-D9EE-618BC4CCD7B4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff87569000 - 0x7fff878a7fef com.apple.MessageFramework 4.2 (1077) <32F00E54-E6C4-0511-EBE4-DDC7DE1CB474> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x7fff878a8000 - 0x7fff87942fff com.apple.ApplicationServices.ATS 4.1 (???) <E2A107C5-0230-265A-E40D-CFE0219C99E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff87969000 - 0x7fff879d3fe7 libvMisc.dylib ??? (???) <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff879d4000 - 0x7fff87c55fe7 com.apple.Foundation 6.6.1 (751.14) <767349DB-C486-70E8-7970-F13DB4CDAF37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff87c56000 - 0x7fff87e14ff7 libSystem.B.dylib ??? (???) <526DD3E5-2A8B-4512-ED97-01B832369959> /usr/lib/libSystem.B.dylib
    0x7fff87e15000 - 0x7fff87ec4fff edu.mit.Kerberos 6.5.9 (6.5.9) <42364D54-C647-14DE-2B1C-D94DAA03F092> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff87ec5000 - 0x7fff87f7efff libsqlite3.dylib ??? (???) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff87f7f000 - 0x7fff87f98fff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff87fa8000 - 0x7fff88082ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff88083000 - 0x7fff88085fff com.apple.print.framework.Print 6.0 (237) <70DA9755-5DC1-716B-77E2-E42C5DAB85A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff88086000 - 0x7fff88089fff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8808a000 - 0x7fff881abfe7 libcrypto.0.9.8.dylib ??? (???) <32F2A87F-B146-BBF2-3AD1-494C686F1EE3> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff881ac000 - 0x7fff88220ff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <546E204C-AC7A-030C-DC32-125A3E422FB5> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x7fff88221000 - 0x7fff88270fff com.apple.iCalendar 1.0.1 (51) <6A991ED8-2A03-8FEC-85FF-5DDFDF18D8E3> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff88277000 - 0x7fff882bdfe7 libvDSP.dylib ??? (???) <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff882be000 - 0x7fff8831afff libGLU.dylib ??? (???) <6A6612BC-1AF9-08EC-80B2-B697238EED47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8831b000 - 0x7fff88320ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff88331000 - 0x7fff8833dfef libbz2.1.0.dylib ??? (???) <4AA81AA7-DF37-6430-07D1-F59F37AEC357> /usr/lib/libbz2.1.0.dylib
    0x7fff8833e000 - 0x7fff88354fff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff88355000 - 0x7fff884b4ff7 com.apple.syncservices 5.1 (578) <17B2B8E1-EFEE-B0F5-3FFF-27A88ACFB467> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x7fff884b5000 - 0x7fff88571ff7 com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8864a000 - 0x7fff88655ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff88686000 - 0x7fff88691fff com.apple.dotMacLegacy 3.2 (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x7fff88692000 - 0x7fff886b2fff com.apple.DotMacSyncManager 2.0.1 (446.3) <200FD7C1-8C44-A14C-33EF-0E287DE741D4> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x7fff886b3000 - 0x7fff8871afef com.apple.AppleVAFramework 4.7.5 (4.7.5) <68D4E82B-7D55-A963-FF0B-80F276C1F2DE> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8871b000 - 0x7fff88820fe7 libGLProgrammability.dylib ??? (???) <50498DA4-A2D6-260E-5C6E-994AF9BBDB98> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff88821000 - 0x7fff888b1fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff888e8000 - 0x7fff88a0cfe7 com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <466C5725-8311-41F1-1653-EB5C80644ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff88a0f000 - 0x7fff88c94fe7 com.apple.security 6.1.1 (37594) <E5DA8BFD-4A48-EFD4-E938-3BDFB356A8AF> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff88c95000 - 0x7fff88c9dfff com.apple.DisplayServicesFW 2.2 (2.2) <2C497E53-F471-5930-D15D-C033C438F39C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <526DD3E5-2A8B-4512-ED97-01B832369959> /usr/lib/libSystem.B.dylib
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.37f3
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: WDC WD6400AAKS-40H2B0, 596.17 GB
    Serial ATA Device: OPTIARC DVD RW AD-5670S
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0x24400000
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1005, 0x26200000
    USB Device: Apple Optical USB Mouse, 0x05ac (Apple Inc.), 0x0304, 0x26230000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x021d, 0x26220000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: Officejet 5600 series, 0x03f0 (Hewlett Packard), 0x4f11, 0x04300000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215, 0x06110000

  • Safari error report - Any ideas???

    Process: Safari [5509]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0 (6533.16)
    Build Info: WebBrowser-75331600~5
    Code Type: X86-64 (Native)
    Parent Process: launchd [88]
    Date/Time: 2010-07-16 22:53:20.607 +0100
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 72836 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 59988 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: FEAC6EDF-2F42-4C70-A654-14490C78B902
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00007fff5f3fffe8
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: isEditable
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x00007fff8591d10d objc_msgSend + 25
    1 com.apple.WebKit 0x00007fff83b4c6b4 WebEditorClient::isEditable() + 20
    2 com.apple.WebCore 0x00007fff8089cc89 WebCore::Editor::clientIsEditable() const + 41
    3 com.apple.WebCore 0x00007fff8089cc38 WebCore::Frame::isContentEditable() const + 24
    4 com.apple.WebCore 0x00007fff8089cbb4 WebCore::HTMLElement::isContentEditable() const + 36
    5 com.apple.WebCore 0x00007fff8089cc14 WebCore::HTMLElement::isContentEditable() const + 132
    6 com.apple.WebCore 0x00007fff80917c5d WebCore::Position::upstream(WebCore::Position::EditingBoundaryCrossingRule) const + 237
    7 com.apple.WebCore 0x00007fff8091a6c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 2181
    8 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    9 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    10 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    11 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    12 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    13 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    14 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    15 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    16 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    17 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    18 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    19 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    20 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    21 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    22 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    I HAVE DELETED LINES 23 - 499 TO ENABLE ME TO POST BUT ERROR MESSAGE AS LINE 22 FOR ALL 23 -499
    500 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    501 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    502 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    503 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    504 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    505 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    506 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    507 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    508 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    509 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    510 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    511 com.apple.WebCore 0x00007fff8091a4c5 WebCore::Position::getInlineBoxAndOffset(WebCore::EAffinity, WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff855f008a kevent + 10
    1 libSystem.B.dylib 0x00007fff855f1f5d dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff855f1c34 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff855f175e dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff855f1088 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff855f0f25 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff85611eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff85615cd1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff80822249 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff8081e35c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff85610456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff85610309 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff855d72fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff855d796d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff81a553c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff81a5484f CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f0f5 0x100000000 + 192757
    5 com.apple.Safari 0x000000010002f085 0x100000000 + 192645
    6 libSystem.B.dylib 0x00007fff85610456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff85610309 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff855d72fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff855d796d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff81a553c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff81a5484f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff864a54c3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff86425e8d _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff85610456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff85610309 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff8561adce select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff81a76e92 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff85610456 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff85610309 thread_start + 13
    Thread 6: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff85611eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff85615cd1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff87e0f2b0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001bd455 0x100000000 + 1823829
    4 com.apple.Safari 0x0000000100046aeb 0x100000000 + 289515
    5 com.apple.Safari 0x0000000100046969 0x100000000 + 289129
    6 libSystem.B.dylib 0x00007fff85610456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff85610309 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff855d72fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff855d796d mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff801d1be2 CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff801d1b22 thread_fun + 34
    4 libSystem.B.dylib 0x00007fff85610456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff85610309 thread_start + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff855f0eaa _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff855f12bc pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff855f0f25 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x00007fff7066cf90 rbx: 0x000000011f136d70 rcx: 0x0000000100ddb5d0 rdx: 0x000000012ed3c7c0
    rdi: 0x000000013c905950 rsi: 0x00007fff87a39100 rbp: 0x00007fff5f400010 rsp: 0x00007fff5f400008
    r8: 0x00007fff5fbfe39c r9: 0x0000000000000001 r10: 0x00007fff81a5e690 r11: 0x00000001006cbd70
    r12: 0x00007fff5f4002e0 r13: 0x00000001217400b0 r14: 0x00000001308bca28 r15: 0x0000000000000000
    rip: 0x00007fff8591d10d rfl: 0x0000000000010206 cr2: 0x00007fff5f3fffe8
    Binary Images:
    0x100000000 - 0x1006a9fef com.apple.Safari 5.0 (6533.16) <055D70FE-977B-C3B3-4E40-E05E3D9CF0AB> /Applications/Safari.app/Contents/MacOS/Safari
    0x102e21000 - 0x102e21fff com.apple.JavaPluginCocoa 13.2.0 (13.2.0) <18D9A7A8-ECFF-123C-013D-1E36D279D150> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x1157a7000 - 0x1157afff7 com.apple.JavaVM 13.2.0 (13.2.0) <DD0E846A-3313-09DE-D17A-AE6A3D47DC86> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x115812000 - 0x115816ff7 libFontRegistryUI.dylib ??? (???) <763B8E8F-8602-2096-7CC8-CEE1F4248028> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x115897000 - 0x115898fff ATSHI.dylib ??? (???) <0C6E12AA-4D29-7892-77CA-0B9D2C1627F5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x11af06000 - 0x11b016fef libmecab.1.0.0.dylib 2.0.0 (compatibility 2.0.0) <E321EA43-4F4C-6561-3E87-4081904D53F3> /usr/lib/libmecab.1.0.0.dylib
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80044fef com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8007a000 - 0x7fff800d8ff7 com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8016f000 - 0x7fff8017efff libxar.1.dylib ??? (???) <2C4E4D13-263B-6EFF-C6FD-FB8BA6DB3EF0> /usr/lib/libxar.1.dylib
    0x7fff8017f000 - 0x7fff80518ff7 com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff80519000 - 0x7fff80539ff7 com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8053a000 - 0x7fff805bcfff com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff805bd000 - 0x7fff80604ff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff80605000 - 0x7fff80648ff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <DF457CB3-CE61-0FD4-1403-BB68BC2CC998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff80649000 - 0x7fff8068aff7 com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8068b000 - 0x7fff80698fe7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <7B891D4C-1F19-4DB0-FD12-7A7D5E8F47AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff80699000 - 0x7fff807d7fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff807d8000 - 0x7fff807e9ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
    0x7fff8081a000 - 0x7fff8081bfff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff8081c000 - 0x7fff8148bfe7 com.apple.WebCore 6533 (6533.16) <8F1CAEF4-34FC-49D0-3DF2-937EE69B05D8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8148c000 - 0x7fff816cefef com.apple.AddressBook.framework 5.0.2 (870) <A1278575-53F2-CC00-7306-E49713FEC7C6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff816d2000 - 0x7fff816e3fff SyndicationUI ??? (???) <46D6FA2B-1818-1756-A453-23EB0AC587EB> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff816e4000 - 0x7fff81809fef com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8180a000 - 0x7fff8180bfff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff81a09000 - 0x7fff81b7eff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff81be0000 - 0x7fff81bf6fef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff81bf7000 - 0x7fff81c27fef com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff81c34000 - 0x7fff81c83ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff81d23000 - 0x7fff81da0fef com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff81dec000 - 0x7fff822f0fe7 com.apple.VideoToolbox 0.484.11 (484.11) <4577FF14-E6A7-AAD8-E6E6-ECA9CFCC6989> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff82327000 - 0x7fff82332ff7 com.apple.HelpData 2.0.4 (34) <B44D2E2A-BC1E-CD63-F8A1-C9465491693A> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff82333000 - 0x7fff82347fff libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff82348000 - 0x7fff8238bfff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff823a2000 - 0x7fff8245fff7 com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff82460000 - 0x7fff8247bff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8247c000 - 0x7fff824b7fff com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff824b8000 - 0x7fff824bcff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <E666EBC7-2D87-A3C6-9461-A596B4E53593> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff824c4000 - 0x7fff824dafff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff824db000 - 0x7fff82ce5fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff82ce6000 - 0x7fff82deafff com.apple.PubSub 1.0.5 (65.19) <10137D49-8771-05F0-AC60-B41F6A8E0D87> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff82deb000 - 0x7fff83160fe7 com.apple.RawCamera.bundle 3.0.3 (529) <2E6B251A-C5A5-A3F9-832B-BB1958F938E9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff831a1000 - 0x7fff831c9fff com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff831ca000 - 0x7fff8320efe7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff83215000 - 0x7fff83220ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff83221000 - 0x7fff83222ff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff832de000 - 0x7fff8331ffff com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff83320000 - 0x7fff834d6fef com.apple.ImageIO.framework 3.0.3 (3.0.3) <A32D0B5A-7149-7739-22D3-84D38B07E9E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff834d7000 - 0x7fff83554fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff83555000 - 0x7fff8366efef libGLProgrammability.dylib ??? (???) <B057FC52-6A97-F450-48D8-325A70423A53> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff83671000 - 0x7fff8368afff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff836ae000 - 0x7fff836b1ff7 com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff836b2000 - 0x7fff836b7fff libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff836b8000 - 0x7fff8393eff7 com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8393f000 - 0x7fff83965fe7 libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8398a000 - 0x7fff839c7fff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff83b3d000 - 0x7fff83cb9ff7 com.apple.WebKit 6533 (6533.16) <B0C2B2F5-9BC1-5907-17A7-E2039C1EF57B> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff83cd0000 - 0x7fff83de7fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff83de8000 - 0x7fff83ef2ff7 com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff83ef3000 - 0x7fff83f18fe7 com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff83f19000 - 0x7fff83f19ff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff83f1a000 - 0x7fff83fcffe7 com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff84095000 - 0x7fff8409afff libGFXShared.dylib ??? (???) <1265FAEF-1C97-B339-28A4-4510589B067B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8409b000 - 0x7fff842d6fef com.apple.imageKit 2.0.3 (1.0) <8DA80BC9-C671-BD89-EA2E-3C632D6ECE30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff842d7000 - 0x7fff842e2fff com.apple.CrashReporterSupport 10.6.3 (250) <F74D84F2-26D0-BE89-00A8-238857AA83C5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff842e3000 - 0x7fff842e9ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff842ea000 - 0x7fff8472dfef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8472e000 - 0x7fff84733ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff84734000 - 0x7fff84765fff libGLImage.dylib ??? (???) <2F18DB77-CF77-1311-9E20-FE460090C166> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff84766000 - 0x7fff847f2fef SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff847f3000 - 0x7fff8482bfef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
    0x7fff8482c000 - 0x7fff84865ff7 com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff848b5000 - 0x7fff848edff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <94776929-EF76-D979-5412-940C845BAC5D> /usr/lib/libssl.0.9.8.dylib
    0x7fff848ee000 - 0x7fff84937ff7 com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff84938000 - 0x7fff84938ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff84939000 - 0x7fff8493ffff libCGXCoreImage.A.dylib 543.50.0 (compatibility 64.0.0) <2D72D55A-C8FE-78DD-602E-E934057EDF95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff84aaa000 - 0x7fff84b12fff com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff84b13000 - 0x7fff84badfff com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff84bae000 - 0x7fff84bf7fef libGLU.dylib ??? (???) <34D118CD-F9EE-D023-FEBF-74581DEF31CD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff84bf8000 - 0x7fff84bf8ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff84bf9000 - 0x7fff84bf9ff7 com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff84bfa000 - 0x7fff84c10ff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <BFFEC259-F103-B25A-BB52-1AA79116DDBA> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84c38000 - 0x7fff84d1efe7 com.apple.DesktopServices 1.5.7 (1.5.7) <8A697128-B6CA-E4A8-C200-6520D5A35FBE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff84d1f000 - 0x7fff84d33ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff84d34000 - 0x7fff84e43fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff84e44000 - 0x7fff85541067 com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff85542000 - 0x7fff855d1fff com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff855d2000 - 0x7fff855d5ff7 libCoreVMClient.dylib ??? (???) <DBB2C09F-4BF4-326C-B775-B7A128C501E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff855d6000 - 0x7fff85796fef libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    0x7fff85797000 - 0x7fff85798ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8589a000 - 0x7fff85906ff7 com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8590f000 - 0x7fff85917fff com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff85918000 - 0x7fff859cefff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff859cf000 - 0x7fff85a19ff7 com.apple.Metadata 10.6.3 (507.10) <641395B7-FF2C-B94C-965A-CE6A0830645F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff85af3000 - 0x7fff85afffff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5C876577-ACB7-020C-F7DB-EE0135C3AB8D> /usr/lib/libbz2.1.0.dylib
    0x7fff85b00000 - 0x7fff85b06ff7 IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff85b07000 - 0x7fff85bd7ff7 com.apple.CFNetwork 454.9.7 (454.9.7) <AA6EB690-6CCF-603D-AAC2-35B9E05D1593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff85c30000 - 0x7fff85ce9fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff85e59000 - 0x7fff85e6eff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff85e6f000 - 0x7fff85e7efff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff85eca000 - 0x7fff85ecaff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff85ecb000 - 0x7fff85eeefff com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff85eef000 - 0x7fff85f8ffff com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff86058000 - 0x7fff860adfef com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff860ae000 - 0x7fff8611cfff com.apple.AppleVAFramework 4.9.20 (4.9.20) <78727165-8D44-0354-6F6C-68FD798E04A1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8611f000 - 0x7fff861dffff libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff861e0000 - 0x7fff8639efff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
    0x7fff8639f000 - 0x7fff863b1fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff863b2000 - 0x7fff86414fe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff86415000 - 0x7fff86696fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff86697000 - 0x7fff866b8fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff866b9000 - 0x7fff866cafff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff866cb000 - 0x7fff866daff7 com.apple.opengl 1.6.8 (1.6.8) <0CDC4F98-7981-A114-1778-AF171075138E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff866db000 - 0x7fff8672cfe7 com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8672d000 - 0x7fff867b2fff com.apple.print.framework.PrintCore 6.2 (312.5) <E736F6DC-2E69-A14D-6BCF-69D14232F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff867b3000 - 0x7fff86868fe7 com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff868ca000 - 0x7fff86a39fe7 com.apple.QTKit 7.6.6 (1742) <7E254184-757D-E87C-5B2A-7612A2C85243> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff86a3a000 - 0x7fff86a3eff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff86a3f000 - 0x7fff86a46fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff86d88000 - 0x7fff86df2fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff86df3000 - 0x7fff86df3ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff86df4000 - 0x7fff86e1fff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff86e20000 - 0x7fff86eebfe7 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff86eec000 - 0x7fff86f1bff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff86f1c000 - 0x7fff86f3afff libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff86f3b000 - 0x7fff87063ff7 com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff87064000 - 0x7fff87113fff edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff87114000 - 0x7fff872f7fef libType1Scaler.dylib ??? (???) <4C5DD699-D329-CBC4-018B-D9033DB6A3D6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff872f8000 - 0x7fff87ceefff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff87cef000 - 0x7fff87cfdff7 libkxld.dylib ??? (???) <EE840168-1F67-6219-8BA3-C46039BCC8B3> /usr/lib/system/libkxld.dylib
    0x7fff87cfe000 - 0x7fff87d7cfff com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff87d7d000 - 0x7fff87d7dff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff87d7e000 - 0x7fff87df9fff com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff87dfa000 - 0x7fff87dfcfff libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff87dfd000 - 0x7fff87fe7fe7 com.apple.JavaScriptCore 6533 (6533.13) <C2D33B72-06F1-B789-6FD3-FB09EEB6C907> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff87fe8000 - 0x7fff88025ff7 libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff88026000 - 0x7fff8806dfef com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff880a9000 - 0x7fff883dcfe7 com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff883dd000 - 0x7fff884b7ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff884b8000 - 0x7fff88721ff7 com.apple.QuartzComposer 4.1 (156.16) <0BAE3C90-CF60-C0C7-C29E-BF9922074095> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff88722000 - 0x7fff88753fef libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff88754000 - 0x7fff88799fff com.apple.CoreMediaIOServices 130.0 (1035) <567D7949-3115-4E78-8F27-B28968CC25F7> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff8885d000 - 0x7fff8888afff MetadataLib.dylib 3.0.3 (compatibility 2.2.1) <91713F38-435B-EA2A-F4D2-EF28AE59349B> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
    0x7fff88950000 - 0x7fff8899cfff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff8899d000 - 0x7fff8899dff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff88a00000 - 0x7fff88a02fff com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff88a03000 - 0x7fff88a38fef com.apple.framework.Apple80211 6.2.3 (623.1) <E58C0A3A-BA14-9703-F6A3-3951A862570C> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff88a41000 - 0x7fff88a4cfff com.apple.corelocation 12 (12) <5CD9B2E3-3F73-899B-5C9F-8F5EBC8A6BE6> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff88ac1000 - 0x7fff88b51fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff88b52000 - 0x7fff88e50fe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff88e6a000 - 0x7fff88e6dfff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff88e6e000 - 0x7fff88f66ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
    0x7fff88f67000 - 0x7fff88fe6fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff88fe7000 - 0x7fff8902fff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff89030000 - 0x7fff8907ffef libTIFF.dylib ??? (???) <A66CBA9C-A38D-5EDB-BFB5-CB398F033D6F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /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: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.3f8, 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: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    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

    awhcmy --
    I see you've started a new thread . . .
    In your prior one here
    http://discussions.apple.com/message.jspa?messageID=11830358#11830358
    you had removed Rapport, and it was still crashing.
    In Thread 0 that crashed, it keeps talking about
    WebCore::TextDirection, WebCore::InlineBox*&, int&) const + 1669
    Whatever this is from, this is your problem.
    I looked around and couldn't find anything on this.
    Maybe someone else will know . . .

Maybe you are looking for

  • Find, mix and have several aperture libraries opened?

    I had a harddisk break, so I am now with a new disk, same machine, but with backup files stored from Apple on my disk. Problem, where to find my old aperture library. I did start at new when I had my new machine this year. January I think. And then I

  • Clean Up 311 issues - Yikes!

    My Mac is only a year old and I haven't installed a lot of software, but Sophos has come up with no viruses but 311 issues. Here are the first few lines:Using IDE files:age-amut.ide age-amuy.ide age-amvg.ide age-amxe.ide age-amxg.ide age-amxo.ide age

  • Named Query / MaxRows-Value as Parameter?

    Hello! Í'm using Toplink 10.1.2 with named queries. How can I set "maxRows" as additional parameter for a named query? eg. ReadAllQuery raq = new ReadAllQuery(MyBean.class); ExpressionBuilder eb = new ExpressionBuilder(); raq.addArgument("searchStrin

  • Associated Dimension in Detail Variable Disappears

    Hi there, Verion:  BOBJ 4.1 SPS2. When creating a DETAIL VARIABLE on a report with MULTIPLE QUERIES which has MERGED OBJECTS the associated dimension is accepted but then is missing when you reopen the variable.  Also, when I use the variable it work

  • Why is my iPhoto not opening?

    I have iPhoto 11 on my Mabook Pro, which I bought this year in February. I never used iPhoto because I didn't know how to use it until one of my friends explained. Now when I open it, it just loads, it doesnt do anything but show the loading circle.