Comparing chars

how would I compare a char?
when I type this i get an error. it says cannot use == operator error. What is the correct way to do this?
thanks
if (charTest == "c" )

A char is declered this way 'c'
You have a String "c"

Similar Messages

  • How do I compare chars?

    Hi!
    I've got a problem comparing chars. Is there a way to check that a char is "earlier" than another one?
    By "earlier" i mean that for example A is earlier than B, B is earlier than C etc.
    Thanks in advance!

    DrClap wrote:
    BigDaddyLoveHandles wrote:
    The javadoc for compareToIgnoreCase states:
    This method returns an integer whose sign is that of calling compareTo with normalized versions of the strings where case differences have been eliminated by calling Character.toLowerCase(Character.toUpperCase(character)) on each character. Why use both toUpperCase and toLowerCase?Probably something to do with either the Turkish i's problem or the ß character.I see now. For example: upper case versus lower case versus title case -- it's not either/or.
    [http://java.sun.com/javase/6/docs/api/java/lang/Character.html#isTitleCase(int)]

  • Comparing char in a string to strings in a txt file

    Hi guys, i am dveloping a scrabble application for a project in jvava. Currently, i am trying to work on coding a computer player to play against a human, ive finished all the game logic nd 2 human players can successfully play on the same system.
    My problem is when coming up with the AI logic, i am faced with the problem of how to compare the computer player's letters to the dictionary txt file in order to find the possible words he can play.
    For example, the PC player has the letters A,B,E,G,T,F in his rack, it searches the dictionary and finds words that also contain these characters, so it would return words like AT, BAT, GATE, etc. I have already looke up the Jumble algorithm, but i dont really understand it(im still quite new to java).
    I already have a ditionary class which i put the code below.
    What i want to do now is just to come up with a simple method that takes a string, and compares the chars, and find words that match the char and return them but i dont knw hw to come about it.
    import java.util.Scanner;      
    import java.io.IOException;  
    import java.util.ArrayList;   
    import java.io.*;             
    public class Dictionary
        ArrayList<String> dictionary;
        public Dictionary() throws IOException
            dictionary = new ArrayList<String>();
        public void readInDictionaryWords() throws IOException
            File dictionaryFile = new File("c:/data/dict.txt");    // declare the file
            if( ! dictionaryFile.exists()) {
                System.out.println("*** Error *** \n" +
                                   "Your dictionary file has the wrong name or is " +
                                   "in the wrong directory.  \n" +
                                   "Aborting program...\n\n");
                System.exit( -1);    // Terminate the program
            Scanner inputFile = new Scanner( dictionaryFile);
            while( inputFile.hasNext()) {
                dictionary.add( inputFile.nextLine().toUpperCase() );
        public boolean wordExists( String wordToLookup)
            if( dictionary.contains( wordToLookup)) {
                return true;    // words was found in dictionary
            else {
                return false;   // word was not found in dictionary
        return"";
    }

    Loops...
    You take the first
    then second
    then third
    and etc
    You take the first 2
    the next 2
    the next 2
    etc
    all the way through n characters
    once you have gone through this, then you have to do all possible combinations of characters of 2 through n.
    Here is an implementation of N choose k for k up to 7:
    public class Junk {
      public Junk(){
      public void choose1(String s){
        int lCount=0;
        for(int i=0; i<s.length(); i++){
          System.out.println("("+s.charAt(i)+")");
          lCount++;
        System.out.println("Distinct Combinations: "+lCount);
      public void choose2(String s){
        int lCount=0;
        for(int i=0; i<s.length(); i++){
          for(int j=i+1; j<s.length(); j++){
              System.out.println("("+s.charAt(i)+", "+s.charAt(j)+")");
              lCount++;
        System.out.println("Distinct Combinations: "+lCount);
      public void choose3(String s){
        int lCount=0;
        for(int i=0; i<s.length(); i++){
          for(int j=i+1; j<s.length(); j++){
            for(int k=j+1; k<s.length(); k++){
              System.out.println("("+s.charAt(i)+", "+s.charAt(j)+", "+s.charAt(k)+")");
              lCount++;
        System.out.println("Distinct Combinations: "+lCount);
      public void choose4(String s){
        int lCount=0;
        for(int i=0; i<s.length(); i++){
          for(int j=i+1; j<s.length(); j++){
            for(int k=j+1; k<s.length(); k++){
              for(int l=k+1; l<s.length(); l++){
                System.out.println("("+s.charAt(i)+", "+s.charAt(j)+", "+s.charAt(k)+", "+s.charAt(l)+")");
                lCount++;
        System.out.println("Distinct Combinations: "+lCount);
      public void choose5(String s){
        int lCount=0;
        for(int i=0; i<s.length(); i++){
          for(int j=i+1; j<s.length(); j++){
            for(int k=j+1; k<s.length(); k++){
              for(int l=k+1; l<s.length(); l++){
                for(int m=l+1; m<s.length(); m++){
                  System.out.println("("+s.charAt(i)+", "+s.charAt(j)+", "+s.charAt(k)+", "+s.charAt(l)+", "+s.charAt(m)+")");
                  lCount++;
        System.out.println("Distinct Combinations: "+lCount);
      public void choose6(String s){
        int lCount=0;
        for(int i=0; i<s.length(); i++){
          for(int j=i+1; j<s.length(); j++){
            for(int k=j+1; k<s.length(); k++){
              for(int l=k+1; l<s.length(); l++){
                for(int m=l+1; m<s.length(); m++){
                  for(int n=m+1;n<s.length(); n++){
                    System.out.println("("+s.charAt(i)+", "+s.charAt(j)+", "+s.charAt(k)+", "+s.charAt(l)+", "+s.charAt(m)+", "+s.charAt(n)+")");
                    lCount++;
        System.out.println("Distinct Combinations: "+lCount);
      public void choose7(String s){
        int lCount=0;
        for(int i=0; i<s.length(); i++){
          for(int j=i+1; j<s.length(); j++){
            for(int k=j+1; k<s.length(); k++){
              for(int l=k+1; l<s.length(); l++){
                for(int m=l+1; m<s.length(); m++){
                  for(int n=m+1; n<s.length(); n++){
                    for(int o=n+1; o<s.length(); o++){
                      System.out.println("("+s.charAt(i)+", "+s.charAt(j)+", "+s.charAt(k)+", "+s.charAt(l)+", "+s.charAt(m)+", "+s.charAt(n)+", "+s.charAt(o)+")");
                      lCount++;
        System.out.println("Distinct Combinations: "+lCount);
      public static void main(String[] args) {
        Junk j = new Junk();
        j.choose7("1234567");
    }I'll leave it to you to integerate the algos into your app appropriately.

  • How to compare char and numc in select query

    Hi  Experts,
    I am using For all entries  to combine two tables.
    I want to fetch the data from these tables.
    The field in one table char, and in another the field is numc.
    1st Query from table BDCP2  and get the tabkey value is like (2000000000000000000086200000000000000000000)
    2nd query     For all entries found,
    query table ESTMJ with the following parameter.
         ESTMJ-RECN = BDCP2-TABKEY+3(20)
    1.TABKEY         CHAR     254
    2.RECN         NUMC     20     
    How to compare these two ?
    Regards,
    Bindhu Priya.

    for  two fields numc & char , please check out their Conversion routine in their respective Database table.
    1st in SE11-> enter table names in different sessions. and check out the data domain used by this fields
    In their respective domains of fields, click on tab 'DEFINITIONS', then check out the conversion routines in Output Characteristics of the Data Domain of field
    From my point of view, both the Conversion routines should be the same.
    If Conversion Routines are not there, then insert suitable Conversion routine for both the fields domain
    For help for for conversion routines:
    conversion routine
    http://help.sap.com/saphelp_46c/helpdata/en/cf/21ee19446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/35/26b217afab52b9e10000009b38f974/content.htm
    http://abaplovers.blogspot.com/2008/03/conversion-routines-in-sap.html
    hope this solution could solve your issue..
    <begging removed by moderator>
    Gaur Mayank
    Edited by: Gaur Mayank on Nov 5, 2011 10:40 AM
    Edited by: Thomas Zloch on Nov 6, 2011 3:59 PM

  • How to compare char's Texts(some what challenging)

    Hi all,
    I want the Report like this.
    TransactionID--Usersite-Custsales
    10001--newyork1newyork2
    10002--newyork3newyork5.
    In above TransacationID, Usersite, Custsales are chars.
    I want to compare these two chars texts & display the texts which are not equal,.
    Please help me friends.
    waiting for your replies...
    Thanks,
    James

    Hi  James,
    I think these 3 are different master data objects...so they will be loaded separately as attributes and texts...If it is the case,You don't have an option to solve it in query level...But you can create a work book on this query..and you can compare the same in work book...
    If these are not master data objects which were loading separately and coming through transactional data only,then as prasad explained you can get it through creating an extra object and write a routine to fill this by comparing those two objects...
    Hope it helps
    Thanks
    Teja

  • Comparing char to a value

    How do you compare a value of a character to another value...I don't really know how to explain here is my code
          int x=1;
          int[] answer;
          String newString="";
          String result=enter.getText();
          int size=result.length();
          char theCharacter;
          for(x=1; x<=size; x++)
            theCharacter = result.charAt(x);
            while(theCharacter != " " && x <= size)
              newString=newString+result.charAt(x);
            answer[x]=Integer.parseInt(newString);
            enter.setText("");
          }I am trying to take input from a textbox and read the input until I get to a space basically.

    You could try.
    String newString = "";
    int iSpace = result.indexOf(" ");
    if (iSpace >=0)
    newString = result.substring(0,iSpace);
    else
    newString = result;

  • Performance question when compare date with date or char with char

    Hello from Germany (Frankfurt) !
    I am working on Oracle 9.2.0.8.0
    and have to solve following problem:
    Comparison of a date and char fields.
    Now two ways to do it.
    Either I compare char with char and convert date to char,
    or I compare date with date and convert char to date.
    Now the performace question. Which operation takes more effort for the database?
    So why not to try and to see the results?
    First create table:
    CREATE TABLE TEST (
    char_date VARCHAR2(8),
    real_date DATE
    NOLOGGING;
    Then insert 1.000.000 rows
    BEGIN
    for x in 1..1000000
    loop
    insert into test (char_date, real_date) VALUES('19990101', TO_DATE('2006.01.01', 'YYYY.MM.DD'));
    end loop;
    COMMIT;
    END;
    Collect statistics
    EXEC dbms_stats.gather_table_stats('TESTER', 'TEST');
    Now run some selects for date to char conversion:
    Elapsed: 00:00:00.00
    SQL> select * from test t where TO_DATE(char_date, 'YYYYMMDD') > real_date;
    no rows selected
    Elapsed: 00:00:03.02
    SQL> select * from test t where TO_DATE(char_date, 'YYYYMMDD') > real_date;
    no rows selected
    And some selects for char to date conversion:
    Elapsed: 00:00:03.02
    SQL> select * from test t where char_date > TO_CHAR(real_date, 'YYYYMMDD');
    no rows selected
    Elapsed: 00:00:02.05
    SQL> select * from test t where char_date > TO_CHAR(real_date, 'YYYYMMDD');
    no rows selected
    Elapsed: 00:00:02.05
    SQL>
    As you see when I compare char with char and convert date to char it seems to be faster (almost 1 second)
    Is the test correct?
    I still not sure, what gets better performance...
    Any idea?
    Thanks!

    Depends on whether you want the right results or not.
    Why don't you run the following two queries and see if the difference in results tells you anything?:
    with t as (select to_date('01/02/2007', 'dd/mm/yyyy') date_col from dual
               union all
               select to_date('02/02/2007', 'dd/mm/yyyy') from dual
               union all
               select to_date('03/02/2007', 'dd/mm/yyyy') from dual
               union all
               select to_date('03/03/2006', 'dd/mm/yyyy') from dual)
    select *
    from   t
    where  date_col < to_date('04/03/2006', 'dd/mm/yyyy');
    with t as (select to_date('01/02/2007', 'dd/mm/yyyy') date_col from dual
               union all
               select to_date('02/02/2007', 'dd/mm/yyyy') from dual
               union all
               select to_date('03/02/2007', 'dd/mm/yyyy') from dual
               union all
               select to_date('03/03/2006', 'dd/mm/yyyy') from dual)
    select *
    from   t
    where  to_char(date_col) < '04/03/2006';

  • Comparing x and char by cl_abap_char_utilities

    BEGIN OF hex00,
        hex(4) TYPE x VALUE '00000000',
      END OF hex00,
    if blabla-data ne hex00.
    blabla-date is char(4)
    error: blabla-data and hex00 are not comparable in Unicode programs
    i wanted to use:
    class cl_abap_char_utilities definition load.
    hex00 type c value cl_abap_char_utilities=>?????
    but i dont know what to replace???? with....
    (i got the same example but with hex= '0D' - ??? is CR_LF...)
    someone knows what to replace the ??? with?
    or are other solutions needed? if yes,which?
    best regards,sven
    points will be awarded

    Yes you are right, you cannot do that in unicode system.
    Still I didnt understand as what is ur actual requirement.
    if you want to compare CHAR to CHAR then move the hex value in variable of type CHAR and then compare.
    move: lv_hex to lv_char.
    if lv_char NE lv_char1
    ....do something..
    endif.

  • On the use of VARCHAR2 vs. CHAR

    I'm posting an e-mail thread that has been moving around in my organization, whith guidance from an Oracle representative.
    The basic issue concerns the use of CHAR vs. VARCHAR2 when defining a table in Oracle.
    I would like to get some comments from the community at large.
    1. Business semantics should be represented in every aspect of a database, application, and design as far as I am concerned. Noteably, if the business rule at a corporate entity is clearly stated that when using Oracle the use of CHAR should be limited to those attribute implementations which have the following characteristics; a) The attribute may not be null, b) The attribute must have a character in each of the declared positions.
    2. When the Visual Basic application began writing data to the CHAR columns in your application someone should have had a discussion with the developer to find out why this was happening. If the business semantics changed then the logical implemention of the business semantics should have changed as well. That the two were disconnected is not a problem with the CHAR type, it is a problem with the designer or the developer. The bottom line on this instance is that the column should have been defined as a VARCHAR2 data type since the business semantics no longer complied with the criteria set forth in the previous paragraph.
    3. I think Oracle trys to load as much of the data from a table or index into shared memory, in this case the database block buffers, as it can in order to facilitate query operations. If Oracle has enough memory and can load a table or index into memory, it will do so. At the same time the database engine will move previously cached data out of memory to accommodate the new requirement.
    -----Original Message-----
    Thank you for the detail information on CHAR and VARCHAR2. It got me thinking with a DBA hat. I worked as a DBA before and I did use the CHAR type and I will share my experience/thought on CHAR.
    I don't like to use the char type like Tom has advised because Oracle does not check to see if the value being inserted fills up the column or not which can lead to a problem. And there is no performance gain or save space in Oracle.
    I worked as a DBA before, I used char type on the "must fill/always filled" column (pre DMDC). The application was written in VB with Oracle back end. At some point, VB started inserting values that are short of the column width and created a minor problem (it was supposed to be filled column). The problem was quickly identified and fixed, but it caused an issue.
    I realize that I don’t want to define it as a "must fill/always filled" column if you can't enforce it by simply defining the char data type on a table and prevent possible issue in the future.
    For a manager, in order to use the char properly, you have to hire client developers with Oracle experience or provide a basic Oracle training in order to avoid the problem I mentioned above in order to use the char type correctly.
    I think you, Tom and I are saying the same thing really. Only difference is that Tom and I can not think of a good reason why anyone would like to indicate the business semantics using column type on the database, when it can lead to more work/issues.
    In regards to wasted 25 million byes, why would Oracle load the table with 25 million rows? Shouldn't it use an index? Don't you have a serious problem if Oracle is loading table with the 25 million rows?
    Just my two cents... : )
    -----Original Message-----
    May I beg to differ?
    CHAR plays a vital role in the intuitive interpretation of a database schema. If designed correctly, the use of CHAR tells anyone who is in the know that this is a must fill column. Thus if a column is defined as CHAR(3) everyone should know that the column will always contain three characters. Defining the column as VARCHAR2(3) does not tell you anything about the data other than that the column may contain 0-3 characters.
    Also, If a column is defined as CHAR the column should always be populated. One of the nice features of VARCHAR2 is that if the column is defined at the end of a table, there is no storage overhead until that column is actually populated. Thus if you have a table that has an identifier that is nine characters in length and will always be populated with nine characters, an attribute which describes the type of identifier which is contained in the first column and which must always be populated and is a must fill attribute, and another column which is descriptive and may vary in length or not be populated at time of insert; the following definition does not express the business semantics of the entity:
    COL_CD VARCHAR2(9)
    COL_TYP_TXT VARCHAR2(26)
    COL_TYP_CD VARCHAR2(2)
    The above definition also does not take advantage of inherent storage features of Oracle; notably there is a wasted place holder between COL_CD and COL_TYP_TXT and between COL_TYP_TXT and COL_TYP_CD. The next definition does take advantage of the storage features but does not represent the business semantics of the entity:
    COL_CD VARCHAR2(9)
    COL_TYP_CD VARCHAR2(2)
    COL_TYP_TXT VARCHAR2(26)
    The above definition does not waste space storing a place holder between COL_TYP_CD and COL_TYP_TXT if the COL_TYP_TXT may be null. The column separator will only be used when the column contains data. The below definition satisfies both the storage and business semantics issues:
    COL_CD CHAR(9)
    COL_TYP_CD CHAR(2)
    COL_TYP_TXT VARCHAR2(26)
    This may seem pedantic in nature until you consider the situation where there are 25 million rows in the table represented by the above entity. If each row has a NULL COL_TYP_TXT value then the first example wasted 25 million bytes of storage and 25 million bytes of memory if the full table is loaded into memory. This is an issue which cannot be ignored in high volume databases.
    You may wish to know why it is important to define a must fill/always fill column as a CHAR to express the business semantics of an attribute. I can't give a definitive answer to that other than to say that it is just good database manners.
    So please, continue to use CHAR when the shoe fits. Don't throw something away that has use just because it is not popular or in the mode.
    Also, if I am mistaken in any of the above, please feel free to educate me.
    Thanks.
    -----Original Message-----
    Subject: RE: Oracle on the use of VARCHAR2 vs. CHAR
    Ignore if you already got this. This is just FYI.
    -----Original Message-----
    Below is a detailed answer to your VARCHAR2 or CHAR questions from our Database expert Tom Kyte. The short answer is VARCHAR2 is what you want to use. If you have any questions or want to discuss this in more detail let me know.
    A CHAR datatype and VARCHAR2 datatype are stored identically (eg: the word 'WORD' stored in a CHAR(4) and a varchar2(4) consume exactly the same amount of space on disk, both have leading byte counts).
    The difference between a CHAR and a VARCHAR is that a CHAR(n) will ALWAYS be N bytes long, it will be blank padded upon insert to ensure this. A varchar2(n) on the other hand will be 1 to N bytes long, it will NOT be blank padded.
    Using a CHAR on a varying width field can be a pain due to the search semantics of CHAR.
    Consider the following examples:
    ops$tkyte@8i> create table t ( x char(10) ); Table created.
    ops$tkyte@8i> insert into t values ( 'Hello' );
    1 row created.
    ops$tkyte@8i> select * from t where x = 'Hello';
    X
    Hello
    ops$tkyte@8i> variable y varchar2(25)
    ops$tkyte@8i> exec :y := 'Hello'
    PL/SQL procedure successfully completed.
    ops$tkyte@8i> select * from t where x = :y; no rows selected
    ops$tkyte@8i> select * from t where x = rpad(:y,10);
    X
    Hello
    Notice how when doing the search with a varchar2 variable (almost every tool in the world uses this type), we have to rpad() it to get a hit.
    If the field is in fact ALWAYS 10 bytes long, using a CHAR will not hurt -- HOWEVER, it will not help either.
    The only time I personally use a CHAR type is for CHAR(1). And that is only because its faster to type char(1) then varchar2(1) -- it offers no advantages.
    If you just use varchar2 everywhere, no problem
    My advice is, has been, will be very loudly stated as:
    IGNORE THE EXISTENCE OF CHAR.
    period. If you never use char, you never compare char to varchar2, problem solved.
    And if you use char and compare a char(n) to a char(m) they will never compare either.
    Just say NO TO CHAR.
    **************************************************

    Hi,
    >>A CHAR datatype and VARCHAR2 datatype are stored identically (eg: the word 'WORD' stored in a CHAR(4) and a varchar2(4) consume exactly the same amount of space on disk, both have leading byte counts).
    Ok, but on the other hands:
    SGMS@ORACLE10> create table x (name char(10), name2 varchar2(10));
    Table created.
    SGMS@ORACLE10> insert into  x values ('hello','hello');
    1 row created.
    SGMS@ORACLE10> commit;
    Commit complete.
    SGMS@ORACLE10> select vsize(name),vsize(name2) from x;
    VSIZE(NAME) VSIZE(NAME2)
             10            5
    SGMS@ORACLE10> select dump(name),dump(name2) from x;
    DUMP(NAME)                                         DUMP(NAME2)
    Typ=96 Len=10: 104,101,108,108,111,32,32,32,32,32  Typ=1 Len=5: 104,101,108,108,111Cheers

  • Difference between CHAR and VARCHAR2 datatype

    Difference between CHAR and VARCHAR2 datatype
    CHAR datatype
    If you have an employee name column with size 10; ename CHAR(10) and If a column value 'JOHN' is inserted, 6 empty spaces will be inserted to the right of the value. If this was a VARCHAR column; ename VARCHAR2(10). How would it handle the column value 'JOHN' ?

    The CHAR datatype stores fixed-length character strings, and Oracle compares CHAR values using blank-padded comparison semantics.
    Where as the VARCHAR2 datatype stores variable-length character strings, and Oracle compares VARCHAR2 values using nonpadded comparison semantics.
    This is important when comparing or joining on the columns having these datatypes;
    SQL*Plus: Release 10.2.0.1.0 - Production on Pzt Au 6 09:16:45 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> conn hr/hr
    Connected.
    SQL> set serveroutput on
    SQL> DECLARE
    2 last_name1 VARCHAR2(10) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is NOT equal to -TONGUC -
    PL/SQL procedure successfully completed.
    SQL> DECLARE
    2 last_name1 CHAR(6) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is equal to -TONGUC -
    PL/SQL procedure successfully completed.
    Also you may want to read related asktom thread - "Char Vs Varchar" http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1542606219593
    and http://tahitiviews.blogspot.com/2007/05/less-is-more-more-or-less.html
    Best regards.

  • Sort array list and using comparable

    With the following code I would like to setup a score object for the current player.
    Change it to a string(Is it correct to say parse it to a string type)
    Then add it to the arraylist.
    So I can sort the array list according to the string size.
    That's why I have the variables in that order.
    So if 3 players have the same amount of guesses, they can be positioned on the high score list according to their gameTime.
    //create score object
                   Score currentScore = new Score(guessCount, gameTime, name);
                   String currentScoreToString = currentScore.toString();
                   //add score to arrayList
                   scores.add(currentScoreToString);So the error message says " The method add(Score) in the type arrayList <Score> is not applicable for the arguments(string)"
    Now, I understand that, I would like to know if there is another way to achieve what I am trying to do.
    Is the string idea I am trying here possible? is it practical or should I use comparable?
    I have looked at comparable, but I don't get it.
    Will my Score class implement comparable. I am looking at an example with the following code.
    Employee.java
    public class Employee implements Comparable {
        int EmpID;
        String Ename;
        double Sal;
        static int i;
        public Employee() {
            EmpID = i++;
            Ename = "dont know";
            Sal = 0.0;
        public Employee(String ename, double sal) {
            EmpID = i++;
            Ename = ename;
            Sal = sal;
        public String toString() {
            return "EmpID " + EmpID + "\n" + "Ename " + Ename + "\n" + "Sal" + Sal;
        public int compareTo(Object o1) {
            if (this.Sal == ((Employee) o1).Sal)
                return 0;
            else if ((this.Sal) > ((Employee) o1).Sal)
                return 1;
            else
                return -1;
    ComparableDemo.java
    import java.util.*;
    public class ComparableDemo{
        public static void main(String[] args) {
            List ts1 = new ArrayList();
            ts1.add(new Employee ("Tom",40000.00));
            ts1.add(new Employee ("Harry",20000.00));
            ts1.add(new Employee ("Maggie",50000.00));
            ts1.add(new Employee ("Chris",70000.00));
            Collections.sort(ts1);
            Iterator itr = ts1.iterator();
            while(itr.hasNext()){
                Object element = itr.next();
                System.out.println(element + "\n");
    }The thing I don't understand is why it returns 0, 1 or -1(does it have to do with the positioning according to the object is being compared with?)
    What if I only use currentScore in a loop which loops every time the player restarts?
    //create score object
                   Score currentScore = new Score(guessCount, gameTime, name);
                   String currentScoreToString = currentScore.toString();
                   //add score to arrayList
                   scores.add(currentScoreToString);Also why there is a method compareTo, and where is it used?
    Thanks in advance.
    Edited by: Implode on Oct 7, 2009 9:27 AM
    Edited by: Implode on Oct 7, 2009 9:28 AM

    jverd wrote:
    Implode wrote:
    I have to hand in an assignment by Friday, and all I have to do still is write a method to sort the array list. Okay, if you have to write your own sort method, then the links I provided may not be that useful. They show you how to use the sort methods provided by the core API. You COULD still implement Comparable or Comparator. It would just be your sort routine calling it rather than the built-in ones.
    You have two main tasks: 1) Write a method that determines which of a pair of items is "less than" the other, and 2) Figure out a procedure for sorting a list of items.
    The basic idea is this: When you sort, you compare pairs of items, and swap them if they're out of order. The two main parts of sorting are: 1) The rules for determining which item is "less than" another and 2) Determining which pairs of items to compare. When you implement Comparable or create a Comparator, you're doing #1--defining the rules for what makes one object of your class "less than" another. Collections.sort() and other methods in the core API will call your compare() or compareTo() method on pairs of objects to produce a sorted list.
    For instance, if you have a PersonName class that consists of firstName and lastName, then your rules might be, "Compare last names. If they're different, then whichever lastName is less indicates which PersonName object is less. If they're the same, then compare firstNames." This is exactly what we do in many real-life situations. And of course the "compare lastName" and "compare firstName" steps have their own rules, which are implemented by String's compareTo method, and which basically say, "compare char by char until there's a difference or one string runs out of chars."
    Completely independent of the rules for comparing two items is the algorithm for which items get compared and possibly swapped. So, if you have 10 Whatsits (W1 through W10) in a row, and you're asked to sort them, you might do something like this:
    Compare the current W1 to each of W2 through W10 (call the current one being compared Wn). If any of them are less than W1, swap that Wn with W1 and continue on, comparing the new W1 to W(n+1) (that is, swap them, and then compare the new first item to the next one after where you just swapped.)
    Once we reach the end of the list, the item in position 1 is the "smallest".
    Now repeat the process, comparing W2 to W3 through W10, then W3 to W4 through W10, etc. After N steps, the first N positions have the correct Whatsit.
    Do you see how the comparison rules are totally independent of the algorithm we use to determine which items to compare? You can define one set of comparison rules ("which item is less?") for Whatsits, another for Strings, another for Integers, and use the same sorting algorithm on any of those types of items, as long as you use the appropriate comparison rules.Thanks ;)
    massive help
    I understand that now, but I am clueless on how to implement it.
    Edited by: Implode on Oct 7, 2009 10:56 AM

  • Comparator for non-standard alphabetical sorting

    Dear all,
    Default String.compareTo() method doesn't satisfy me -- alphabetical order of Latvian is slightly different from that in Unicode charts. I'm using TreeMap for indexation purposes so I implemented my own Comparator (LatvianStringComparator) to achieve correct sorting.
    Initialisation of the index is as follows:
    SortedMap index = new TreeMap(new LatvianStringComparator());Implementation of LatvianStringComparator:
    import java.io.Serializable;
    import java.util.Comparator;
    public class LatvianStringComparator implements Comparator, Serializable {
         public static final String SORT_ORDER = "a&#257;bc&#269;de&#275;fg&#291;hi&#299;jk&#311;l&#316;mn&#326;oprs�tu&#363;vz�";
         public int compare(Object o1, Object o2) {
              if (!(o1 instanceof String) || !(o2 instanceof String)) {
                   throw new ClassCastException();
              String str1 = (String)o1;
              String str2 = (String)o2;
              //Case 1: strings are equal.
              if (str1.equals(str2)) return 0;
              //Case 2: strings have to be compared char by char.
              //By default the first string is "less than" the second one.
              int signum = -1;
              int polarity = 1;
              int str1Rank = -1;
              int str2Rank = -1;
              if (str2.length() < str1.length()) {
                   //Primary string is the shortest one; polarity changes.
                   String temp = str1;
                   str1 = str2;
                   str2 = temp;
                   polarity = -1;
              for (int i = 0; i < str1.length(); i++) {
                   str1Rank = SORT_ORDER.indexOf(str1.charAt(i));
                   str2Rank = SORT_ORDER.indexOf(str2.charAt(i));
                   //If char is not present in the specified alphabeth,
                   //it's Unicode position is taken; SORT_ORDER.length() = offset.
                   if (str1Rank == -1) {
                        str1Rank = str1.charAt(i) + SORT_ORDER.length();
                   if (str2Rank == -1) {
                        str2Rank = str2.charAt(i) + SORT_ORDER.length();
                   if (str2Rank < str1Rank) {
                        //First string is "greater than" the second one.
                        signum = 1;
                        break;
              return signum * polarity;
    PROBLEM:
    For small set of keys (tested on several elements) sorting seems to work well, but in case of large number of keys (> 10K) order is strange and fragmented. I'm sure that the problem is not in the number of keys.
    Another issue: many values for keys appear as null!
    If I remove new LatvianStringComparator() from the param list of TreeMap constructor, my app works fine except the sorting according the Latvian alphabeth. So I asume that my implementation of Comparator is erroneous or I have misunderstood something conceptually.
    Could anybody inspect the code, please? THANK YOU!!!
    Normunds

    Hi,
    even this small code fails:
            SortedMap index = new TreeMap(new LatvianStringComparator());
            index.put("baa", "baa");
            index.put("aaa", "aaa");
            index.put("aqa", "aqa");
            index.put("caa", "caa");
            Iterator it = index.keySet().iterator();
            while (it.hasNext()) {
                String key = (String)it.next();
                System.out.println(key);
            }because you assume '...first string is "less than" the second one'
    but you did not test it.
    Just add a 'less test' like:
    if (str2Rank > str1Rank) {
    //First string is "less than" the second one.
    signum = -1;
    break;
    }after
    if (str2Rank > str1Rank) {}and your code will work.
    even better: use Collator API
    Franco

  • Safari Crashes Every time I Try To Open a New Tab, Help!

    Process: Safari [460]
    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 [108]
    PlugIn Path: /usr/local/sps/ia
    PlugIn Identifier: ia
    PlugIn Version: ??? (???)
    Date/Time: 2010-07-27 23:43:54.586 -0400
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 125958 sec
    Crashes Since Last Report: 3
    Per-App Interval Since Last Report: 668370 sec
    Per-App Crashes Since Last Report: 3
    Anonymous UUID: 466ECA0C-375A-494F-901C-72D45F980C04
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff88808180 strlen + 16
    1 libstdc++.6.dylib 0x00007fff83d2c9d3 std::string::compare(char const*) const + 47
    2 ia 0x0000000115873f72 TabData::setURL(char const*) + 44
    3 ia 0x0000000115875fac -[myFrameLoadDelegate webView:didReceiveTitle:forFrame:] + 234
    4 com.apple.WebKit 0x00007fff831ebc1b CallFrameLoadDelegate(objc_object* ()(objc_object, objc_selector*, ...), WebView*, objc_selector*, objc_object*, objc_object*) + 139
    5 com.apple.WebCore 0x00007fff825eac3b WebCore::FrameLoader::didChangeTitle(WebCore::DocumentLoader*) + 187
    6 com.apple.WebKit 0x00007fff831d88c8 WebFrameLoaderClient::transitionToCommittedForNewPage() + 728
    7 com.apple.WebCore 0x00007fff82540719 WebCore::FrameLoader::transitionToCommitted(***::PassRefPtr<WebCore::CachedPage >) + 521
    8 com.apple.WebCore 0x00007fff8253f5af WebCore::FrameLoader::commitProvisionalLoad(***::PassRefPtr<WebCore::CachedPage >) + 175
    9 com.apple.WebCore 0x00007fff8253f4c0 WebCore::DocumentLoader::commitIfReady() + 80
    10 com.apple.WebCore 0x00007fff8253f42f WebCore::DocumentLoader::finishedLoading() + 31
    11 com.apple.WebCore 0x00007fff825fc9ab WebCore::FrameLoader::finishedLoading() + 91
    12 com.apple.WebCore 0x00007fff825fc8f0 WebCore::MainResourceLoader::didFinishLoading() + 144
    13 com.apple.WebCore 0x00007fff825c8af2 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 930
    14 com.apple.WebCore 0x00007fff825c871f WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 127
    15 com.apple.WebCore 0x00007fff825c8629 WebCore::PolicyChecker::continueAfterContentPolicy(WebCore::PolicyAction) + 601
    16 com.apple.WebKit 0x00007fff831e2e1d -[WebFramePolicyListener receivedPolicyDecision:] + 61
    17 com.apple.Safari 0x0000000100039268 0x100000000 + 234088
    18 com.apple.CoreFoundation 0x00007fff86457d2c _invoking__ + 140
    19 com.apple.CoreFoundation 0x00007fff86457bfd -[NSInvocation invoke] + 141
    20 com.apple.CoreFoundation 0x00007fff86473a11 -[NSInvocation invokeWithTarget:] + 49
    21 com.apple.WebKit 0x00007fff831e2c14 -[_WebSafeForwarder forwardInvocation:] + 132
    22 com.apple.CoreFoundation 0x00007fff86454d4c __forwarding__ + 860
    23 com.apple.CoreFoundation 0x00007fff86450e28 CF_forwarding_prep0 + 232
    24 com.apple.WebKit 0x00007fff8326d294 WebFrameLoaderClient::dispatchDecidePolicyForMIMEType(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::String const&, WebCore::ResourceRequest const&) + 164
    25 com.apple.WebCore 0x00007fff825c7728 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 1864
    26 com.apple.WebCore 0x00007fff8262f7fa WebCore::MainResourceLoader::handleEmptyLoad(WebCore::KURL const&, bool) + 266
    27 com.apple.WebCore 0x00007fff825bb826 WebCore::MainResourceLoader::loadNow(WebCore::ResourceRequest&) + 422
    28 com.apple.WebCore 0x00007fff825ba7ae WebCore::MainResourceLoader::load(WebCore::ResourceRequest const&, WebCore::SubstituteData const&) + 1070
    29 com.apple.WebCore 0x00007fff825b9a71 WebCore::DocumentLoader::startLoadingMainResource(unsigned long) + 113
    30 com.apple.WebCore 0x00007fff825b91bf WebCore::FrameLoader::continueLoadAfterWillSubmitForm() + 175
    31 com.apple.WebCore 0x00007fff825b8b12 WebCore::FrameLoader::continueLoadAfterNavigationPolicy(WebCore::ResourceReques t const&, ***::PassRefPtr<WebCore::FormState>, bool) + 578
    32 com.apple.WebCore 0x00007fff825b881a WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool) + 42
    33 com.apple.WebCore 0x00007fff825b8623 WebCore::PolicyCallback::call(bool) + 83
    34 com.apple.WebCore 0x00007fff825b83ff WebCore::PolicyChecker::continueAfterNavigationPolicy(WebCore::PolicyAction) + 1471
    35 com.apple.WebKit 0x00007fff831e2e1d -[WebFramePolicyListener receivedPolicyDecision:] + 61
    36 ia 0x0000000115875e67 -[myWebPolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:] + 330
    37 com.apple.CoreFoundation 0x00007fff86457d2c _invoking__ + 140
    38 com.apple.CoreFoundation 0x00007fff86457bfd -[NSInvocation invoke] + 141
    39 com.apple.CoreFoundation 0x00007fff86473a11 -[NSInvocation invokeWithTarget:] + 49
    40 com.apple.WebKit 0x00007fff831e2c14 -[_WebSafeForwarder forwardInvocation:] + 132
    41 com.apple.CoreFoundation 0x00007fff86454d4c __forwarding__ + 860
    42 com.apple.CoreFoundation 0x00007fff86450e28 CF_forwarding_prep0 + 232
    43 com.apple.WebKit 0x00007fff8326d831 WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::NavigationAction const&, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>) + 193
    44 com.apple.WebCore 0x00007fff82e8a18e WebCore::PolicyChecker::checkNavigationPolicy(WebCore::ResourceRequest const&, WebCore::DocumentLoader*, ***::PassRefPtr<WebCore::FormState>, void ()(void, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool), void*) + 1678
    45 com.apple.WebCore 0x00007fff825b57c4 WebCore::FrameLoader::loadWithDocumentLoader(WebCore::DocumentLoader*, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 1140
    46 com.apple.WebCore 0x00007fff825b406b WebCore::FrameLoader::load(WebCore::DocumentLoader*) + 187
    47 com.apple.WebCore 0x00007fff825b3ecb WebCore::FrameLoader::load(WebCore::ResourceRequest const&, WebCore::SubstituteData const&, bool) + 299
    48 com.apple.WebCore 0x00007fff825b3ca3 WebCore::FrameLoader::load(WebCore::ResourceRequest const&, bool) + 131
    49 com.apple.WebKit 0x00007fff831e2328 -[WebFrame loadRequest:] + 280
    50 com.apple.Safari 0x0000000100063805 0x100000000 + 407557
    51 com.apple.Safari 0x000000010007e8e5 0x100000000 + 518373
    52 com.apple.AppKit 0x00007fff8674c152 -[NSApplication sendAction:to:from:] + 95
    53 com.apple.Safari 0x0000000100049d90 0x100000000 + 302480
    54 com.apple.AppKit 0x00007fff867706be -[NSMenuItem _corePerformAction] + 365
    55 com.apple.AppKit 0x00007fff86770428 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 121
    56 com.apple.AppKit 0x00007fff869f441d -[NSMenu _internalPerformActionForItemAtIndex:] + 35
    57 com.apple.AppKit 0x00007fff868a6217 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 136
    58 com.apple.AppKit 0x00007fff86752c14 NSSLMMenuEventHandler + 321
    59 com.apple.HIToolbox 0x00007fff87752997 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1002
    60 com.apple.HIToolbox 0x00007fff87751ee6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 395
    61 com.apple.HIToolbox 0x00007fff8776fba9 SendEventToEventTarget + 45
    62 com.apple.HIToolbox 0x00007fff8779ecd1 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 387
    63 com.apple.HIToolbox 0x00007fff877cbb06 SendMenuCommandWithContextAndModifiers + 56
    64 com.apple.HIToolbox 0x00007fff877cbabe SendMenuItemSelectedEvent + 101
    65 com.apple.HIToolbox 0x00007fff877cb9be FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 150
    66 com.apple.HIToolbox 0x00007fff877accb3 MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 467
    67 com.apple.HIToolbox 0x00007fff877ac408 _HandleMenuSelection2 + 453
    68 com.apple.AppKit 0x00007fff86623c39 _NSHandleCarbonMenuEvent + 236
    69 com.apple.AppKit 0x00007fff865f774e _DPSNextEvent + 1908
    70 com.apple.AppKit 0x00007fff865f6bed -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    71 com.apple.Safari 0x0000000100015c96 0x100000000 + 89238
    72 com.apple.AppKit 0x00007fff865bc8d3 -[NSApplication run] + 395
    73 com.apple.AppKit 0x00007fff865b55f8 NSApplicationMain + 364
    74 com.apple.Safari 0x0000000100009b18 0x100000000 + 39704
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff8881e08a kevent + 10
    1 libSystem.B.dylib 0x00007fff8881ff5d dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff8881fc34 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff8881f75e dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff8881f088 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff8881ef25 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff8883feb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff88843cd1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff82530249 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff8252c35c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff8883e456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff8883e309 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff888052fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8880596d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8641e3c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8641d84f CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f0f5 0x100000000 + 192757
    5 com.apple.Safari 0x000000010002f085 0x100000000 + 192645
    6 libSystem.B.dylib 0x00007fff8883e456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8883e309 thread_start + 13
    Thread 4: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff8883feb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff88843cd1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff875722b0 ***::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 0x00007fff8883e456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8883e309 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff888052fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8880596d mach_msg + 59
    2 libSystem.B.dylib 0x00007fff8888b663 thread_suspend + 71
    3 ??? 0x00000001158317ab 0 + 4655880107
    Thread 6:
    0 libSystem.B.dylib 0x00007fff888052fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8880596d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8641e3c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8641d84f CFRunLoopRunSpecific + 575
    4 com.apple.CoreFoundation 0x00007fff8641d5d6 CFRunLoopRun + 70
    5 ia 0x0000000115849acb spectorRunLoop(void*) + 154
    6 libSystem.B.dylib 0x00007fff8883e456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8883e309 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff88848dce select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff8643fe92 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff8883e456 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff8883e309 thread_start + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff888052fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8880596d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8641e3c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8641d84f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff844db4c3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff8445be8d _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff8883e456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8883e309 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff8881eeaa _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8881f2bc pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8881ef25 start_wqthread + 13
    Thread 10:
    0 libSystem.B.dylib 0x00007fff888052fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8880596d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8641e3c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8641d84f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff84496a18 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff844968f7 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.machangout.glimsInternal 0x00000001157b88b4 -[MHOGoogleConnectionThreaded thread:] + 429
    7 com.apple.Foundation 0x00007fff8445be8d _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff8883e456 pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff8883e309 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x00000000ffffffff rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000000
    rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x00007fff5fbfcd70 rsp: 0x00007fff5fbfcd38
    r8: 0x0000000115fb3230 r9: 0x0000000100bf3d20 r10: 0x000000000000001a r11: 0x0000000115fb3230
    r12: 0x00007fff7058d518 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000115897680
    rip: 0x00007fff88808180 rfl: 0x0000000000010286 cr2: 0x0000000000000000
    Binary Images:
    0x100000000 - 0x1006a9fef com.apple.Safari 5.0 (6533.16) <055D70FE-977B-C3B3-4E40-E05E3D9CF0AB> /Applications/Safari.app/Contents/MacOS/Safari
    0x100e22000 - 0x100e22fff 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
    0x100e26000 - 0x100e2eff7 com.apple.JavaVM 13.2.0 (13.2.0) <DD0E846A-3313-09DE-D17A-AE6A3D47DC86> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1153ec000 - 0x1153edfff +com.machangout.glims.osax 1.0 (1) <726D06D9-EE16-338D-A6C3-AD0F7E52E3B8> /Library/ScriptingAdditions/Glims.osax/Contents/MacOS/GlimsOSAX
    0x115778000 - 0x1157d7ff7 +com.machangout.glimsInternal 1.0b25 (1.0 build 25) <46C17AAB-5E5B-BE63-8916-E3BAD5F188F3> /Library/Application Support/Glims/PlugIns/Glims for Safari.plugin/Contents/MacOS/.GlimsInternal
    0x115846000 - 0x115891ff7 +ia ??? (???) <88E9ED71-8FF1-324E-6AA5-AA3463074B32> /usr/local/sps/ia
    0x1218dc000 - 0x1219ecfef 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 - 0x7fff80065fe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff80066000 - 0x7fff8007ffff 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
    0x7fff80080000 - 0x7fff80080ff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff80081000 - 0x7fff80081ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff80082000 - 0x7fff800befe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <1E041185-131C-C237-C250-38BE933A269A> /usr/lib/libcurl.4.dylib
    0x7fff800bf000 - 0x7fff802a2fef libType1Scaler.dylib ??? (???) <4C5DD699-D329-CBC4-018B-D9033DB6A3D6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff802ef000 - 0x7fff8032cfff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8035d000 - 0x7fff8038dfef com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff8038e000 - 0x7fff8039dff7 com.apple.opengl 1.6.8 (1.6.8) <0CDC4F98-7981-A114-1778-AF171075138E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8059b000 - 0x7fff805befff com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff805bf000 - 0x7fff80659fff com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8065a000 - 0x7fff80782ff7 com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff80783000 - 0x7fff8078ffff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5C876577-ACB7-020C-F7DB-EE0135C3AB8D> /usr/lib/libbz2.1.0.dylib
    0x7fff807cf000 - 0x7fff8088cff7 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
    0x7fff8088d000 - 0x7fff8089eff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
    0x7fff8089f000 - 0x7fff8091efef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff80992000 - 0x7fff80a6cff7 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
    0x7fff80a6d000 - 0x7fff80ab5ff7 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
    0x7fff80b24000 - 0x7fff80d66fef com.apple.AddressBook.framework 5.0.2 (870) <A1278575-53F2-CC00-7306-E49713FEC7C6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff80d67000 - 0x7fff80d6afff 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
    0x7fff80e21000 - 0x7fff80e2fff7 libkxld.dylib ??? (???) <EE840168-1F67-6219-8BA3-C46039BCC8B3> /usr/lib/system/libkxld.dylib
    0x7fff80e30000 - 0x7fff80e35fff libGFXShared.dylib ??? (???) <1265FAEF-1C97-B339-28A4-4510589B067B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff80e36000 - 0x7fff81640fe7 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
    0x7fff81641000 - 0x7fff81d3e067 com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff81d3f000 - 0x7fff81e58fef libGLProgrammability.dylib ??? (???) <B057FC52-6A97-F450-48D8-325A70423A53> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff81e5f000 - 0x7fff81e98ff7 com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff81e99000 - 0x7fff81ed9ff7 com.apple.MediaKit 10.2 (482) <7FC57927-0169-48EC-F893-1546D4EB4C91> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff81eda000 - 0x7fff82115fef 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
    0x7fff82116000 - 0x7fff82216ff7 com.apple.DiskImagesFramework 10.6.3 (283) <F7BEC366-1EC5-4881-D82F-ADC43C2D592A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff82217000 - 0x7fff82248fff libGLImage.dylib ??? (???) <2F18DB77-CF77-1311-9E20-FE460090C166> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8225f000 - 0x7fff822ebfef SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8244d000 - 0x7fff8244eff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8244f000 - 0x7fff824a0fe7 com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff824e2000 - 0x7fff82529fef com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8252a000 - 0x7fff83199fe7 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
    0x7fff8319a000 - 0x7fff831cffef com.apple.framework.Apple80211 6.2.3 (623.1) <E58C0A3A-BA14-9703-F6A3-3951A862570C> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff831d0000 - 0x7fff831d0ff7 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
    0x7fff831d1000 - 0x7fff8334dff7 com.apple.WebKit 6533 (6533.16) <B0C2B2F5-9BC1-5907-17A7-E2039C1EF57B> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8334e000 - 0x7fff833fdfff edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff834b1000 - 0x7fff837e4fe7 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
    0x7fff83830000 - 0x7fff838fbfe7 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
    0x7fff8394c000 - 0x7fff83957fff com.apple.corelocation 12 (12) <5CD9B2E3-3F73-899B-5C9F-8F5EBC8A6BE6> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff83958000 - 0x7fff83bdeff7 com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff83bdf000 - 0x7fff83bdfff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff83be0000 - 0x7fff83c35fef com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff83c36000 - 0x7fff83c3cff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff83c3d000 - 0x7fff83c7efef com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff83c9d000 - 0x7fff83cacfff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff83cc3000 - 0x7fff83cfbfef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
    0x7fff83cfc000 - 0x7fff83d79fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff83d7a000 - 0x7fff83df8fff com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff83dfe000 - 0x7fff83f0dfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff83f0e000 - 0x7fff83f57ff7 com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff83f74000 - 0x7fff83faffff 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
    0x7fff84057000 - 0x7fff843ccfe7 com.apple.RawCamera.bundle 3.0.3 (529) <2E6B251A-C5A5-A3F9-832B-BB1958F938E9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff843cd000 - 0x7fff843d3ff7 IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff843d4000 - 0x7fff843e1fe7 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
    0x7fff843e2000 - 0x7fff843fdff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff843fe000 - 0x7fff843fffff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff84400000 - 0x7fff8444aff7 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
    0x7fff8444b000 - 0x7fff846ccfef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff846ee000 - 0x7fff84735ff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff847bd000 - 0x7fff847dbfff libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff847dc000 - 0x7fff8485efff 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
    0x7fff8485f000 - 0x7fff84864ff7 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
    0x7fff84865000 - 0x7fff848f5fff 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
    0x7fff848f6000 - 0x7fff84985fff 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
    0x7fff84986000 - 0x7fff849a7fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff84ac8000 - 0x7fff84ad3fff com.apple.CrashReporterSupport 10.6.3 (250) <F74D84F2-26D0-BE89-00A8-238857AA83C5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff84ad4000 - 0x7fff84adfff7 com.apple.HelpData 2.0.4 (34) <B44D2E2A-BC1E-CD63-F8A1-C9465491693A> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff84b20000 - 0x7fff84b23ff7 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
    0x7fff84b24000 - 0x7fff84b29fff libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff84b2a000 - 0x7fff84b2cfff libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff84b2d000 - 0x7fff84b7cff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff84b7d000 - 0x7fff84bfafef com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff84c0a000 - 0x7fff84c8ffff 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
    0x7fff84c90000 - 0x7fff84d49fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff84d4a000 - 0x7fff84d4aff7 com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff84d4b000 - 0x7fff84d60ff7 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
    0x7fff84d61000 - 0x7fff84e31ff7 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
    0x7fff84e32000 - 0x7fff84e39fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff84e3a000 - 0x7fff84e50fef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff84e51000 - 0x7fff84e67fff 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
    0x7fff84e68000 - 0x7fff84e68ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff84ea4000 - 0x7fff84fc9fef com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff84fca000 - 0x7fff85108fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff85109000 - 0x7fff851effe7 com.apple.DesktopServices 1.5.7 (1.5.7) <8A697128-B6CA-E4A8-C200-6520D5A35FBE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff851f8000 - 0x7fff8523bff7 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
    0x7fff8523c000 - 0x7fff8526bff7 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
    0x7fff8526c000 - 0x7fff85277ff7 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
    0x7fff85278000 - 0x7fff85370ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
    0x7fff85371000 - 0x7fff853b2ff7 com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff853b3000 - 0x7fff853c4fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff853c5000 - 0x7fff853ebfe7 libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff853ec000 - 0x7fff853f4fff com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff853f5000 - 0x7fff853f9ff7 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
    0x7fff853fa000 - 0x7fff8540eff7 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
    0x7fff8540f000 - 0x7fff85410ff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff85411000 - 0x7fff85412fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff85462000 - 0x7fff855d1fe7 com.apple.QTKit 7.6.6 (1742) <7E254184-757D-E87C-5B2A-7612A2C85243> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff855d2000 - 0x7fff8596bff7 com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8596c000 - 0x7fff85daffef 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
    0x7fff85db0000 - 0x7fff85e1afe7 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
    0x7fff85e1b000 - 0x7fff85e1eff7 libCoreVMClient.dylib ??? (???) <DBB2C09F-4BF4-326C-B775-B7A128C501E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff85e1f000 - 0x7fff85e44fe7 com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff85eb0000 - 0x7fff85f0eff7 com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff85f0f000 - 0x7fff85f54fff com.apple.CoreMediaIOServices 130.0 (1035) <567D7949-3115-4E78-8F27-B28968CC25F7> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff85f55000 - 0x7fff85f9efef libGLU.dylib ??? (???) <34D118CD-F9EE-D023-FEBF-74581DEF31CD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff85f9f000 - 0x7fff85fe2fff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff85fe3000 - 0x7fff86098fe7 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
    0x7fff86099000 - 0x7fff86159fff libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8615a000 - 0x7fff8615cfff 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
    0x7fff8615d000 - 0x7fff86235ff7 com.apple.DiscRecording 5.0.5 (5050.4.3) <A9106E90-B1DF-21A1-AA19-9AB7516BE32F> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff86236000 - 0x7fff8624afff libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff86264000 - 0x7fff86273fff libxar.1.dylib ??? (???) <2C4E4D13-263B-6EFF-C6FD-FB8BA6DB3EF0> /usr/lib/libxar.1.dylib
    0x7fff86274000 - 0x7fff862e0ff7 com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff862e1000 - 0x7fff8635cfff com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff8635d000 - 0x7fff86388ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff86389000 - 0x7fff8639afff SyndicationUI ??? (???) <46D6FA2B-1818-1756-A453-23EB0AC587EB> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff8639b000 - 0x7fff863ccfef libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff863cd000 - 0x7fff863d1ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff863d2000 - 0x7fff86547ff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff86548000 - 0x7fff8655afe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff865b3000 - 0x7fff86fa9fff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff86faa000 - 0x7fff86faaff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff86fb3000 - 0x7fff87002fef libTIFF.dylib ??? (???) <A66CBA9C-A38D-5EDB-BFB5-CB398F033D6F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff87003000 - 0x7fff8711afef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff8711b000 - 0x7fff87153ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <94776929-EF76-D979-5412-940C845BAC5D> /usr/lib/libssl.0.9.8.dylib
    0x7fff87154000 - 0x7fff8725eff7 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
    0x7fff8726d000 - 0x7fff874d6ff7 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
    0x7fff874ff000 - 0x7fff87515fe7 com.apple.MultitouchSupport.framework 205.34 (205.34) <01AAE66D-C2DF-4EF5-FC7B-E89E08C02A01> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff87516000 - 0x7fff87553ff7 libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff87560000 - 0x7fff8774afe7 com.apple.JavaScriptCore 6533 (6533.13) <C2D33B72-06F1-B789-6FD3-FB09EEB6C907> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8774b000 - 0x7fff87a49fe7 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
    0x7fff87a4a000 - 0x7fff87a6aff7 com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff87a6b000 - 0x7fff87ad3fff 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
    0x7fff87e4b000 - 0x7fff87e73fff 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
    0x7fff87e74000 - 0x7fff87f14fff 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
    0x7fff87f3f000 - 0x7fff87ff4fe7 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
    0x7fff87ff5000 - 0x7fff884f9fe7 com.apple.VideoToolbox 0.484.11 (484.11) <4577FF14-E6A7-AAD8-E6E6-ECA9CFCC6989> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff884fa000 - 0x7fff8853efe7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff88548000 - 0x7fff8864cfff com.apple.PubSub 1.0.5 (65.19) <10137D49-8771-05F0-AC60-B41F6A8E0D87> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8864d000 - 0x7fff88803fef 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
    0x7fff88804000 - 0x7fff889c4fef libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    0x7fff889c5000 - 0x7fff889c5ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff88a3e000 - 0x7fff88bfcfff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
    0x7fff88ed6000 - 0x7fff88edcfff 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
    0x7fff88edd000 - 0x7fff88f1efff com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff88f1f000 - 0x7fff88fd5fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff88fd6000 - 0x7fff89044fff com.apple.AppleVAFramework 4.9.20 (4.9.20) <78727165-8D44-0354-6F6C-68FD798E04A1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff89045000 - 0x7fff89091fff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Model: MacBook5,1, BootROM MB51.007D.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.32f8
    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.7f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2553GSX, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW GS21N
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000

    HI,
    Even though I don't see any third party apps except for Glims which appears to be up to date, you could still have incompatible Safari add-ons causing the problem. Go here for trouble shooting 3rd party plugins or input managers which might be causing the problem. Safari: Add-ons may cause Safari to unexpectedly quit or have performance issues
    Check System Preferences/Accounts - Login Items. Delete any documents or apps. And go to /Library/Startup Items. If you see any files or apps there, move them to the Trash.
    Go to ~/Library/Caches/com.apple.Safari and move the cache.db file to the Trash.
    Relaunch Safari.
    If you still have problems, login to another user account, see if Safari crashes there.
    *Also from your crash report: PlugIn Path: /usr/local/sps/ia*
    See this thread for help with that. http://discussions.apple.com/thread.jspa?messageID=11637499&#11637499
    See the post by: andyBall_uk regarding the following:
    "However - it seems you have the lovely-sounding SpectreSoft installed http://www.spectorsoft.com/index.html
    *"and part of their software may be interfering with Safari : PlugIn Path: /usr/local/sps/ia"*
    Carolyn

  • Safari 5 keeps crashing when I open a new tab. SAVE ME

    I installed Safari 5 toady and now it crashes every time I open a new tab, via any means. I have backdated to Safari 4.0.3 and now that does it as well.
    I also installed iTunes 9 today and the new OS$ on my iPhone.
    I have also disabled plug ins and removed any problems that I could find and still crashes.
    I have installed Firefox which works fine but as I use Mobile me, I want the sync in Safari. Oh I forgot to mention, the bookmarks bar is now empty and mobile me does not populate it.
    Model Name: iMac
    Model Identifier: iMac11,1
    Processor Name: Intel Core i7
    Processor Speed: 2.8 GHz
    Number Of Processors: 1
    Total Number Of Cores: 4
    L2 Cache (per core): 256 KB
    L3 Cache: 8 MB
    Memory: 16 GB
    Processor Interconnect Speed: 4.8 GT/s
    Boot ROM Version: IM111.0034.B02
    SMC Version (system): 1.54f36
    Process: Safari [3175]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.3 (6531.9)
    Build Info: WebBrowser-65310900~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [246]
    PlugIn Path: /usr/local/esps/eia
    PlugIn Identifier: eia
    PlugIn Version: ??? (???)
    Date/Time: 2010-06-27 22:30:24.188 +1000
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 12063 sec
    Crashes Since Last Report: 8
    Per-App Interval Since Last Report: 5729 sec
    Per-App Crashes Since Last Report: 5
    Anonymous UUID: 9E02CCF0-0495-4AF4-80BC-60B8F929AB0E
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff8366d180 strlen + 16
    1 libstdc++.6.dylib 0x00007fff85d5b9d3 std::string::compare(char const*) const + 47
    2 eia 0x000000011c619fd4 TabData::setURL(char const*) + 44
    3 eia 0x000000011c61c00e -[emyFrameLoadDelegate webView:didReceiveTitle:forFrame:] + 234
    4 com.apple.WebKit 0x00007fff83b09c1b CallFrameLoadDelegate(objc_object* ()(objc_object, objc_selector*, ...), WebView*, objc_selector*, objc_object*, objc_object*) + 139
    5 com.apple.WebCore 0x00007fff84b92c3b WebCore::FrameLoader::didChangeTitle(WebCore::DocumentLoader*) + 187
    6 com.apple.WebKit 0x00007fff83af68c8 WebFrameLoaderClient::transitionToCommittedForNewPage() + 728
    7 com.apple.WebCore 0x00007fff84ae8719 WebCore::FrameLoader::transitionToCommitted(***::PassRefPtr<WebCore::CachedPage >) + 521
    8 com.apple.WebCore 0x00007fff84ae75af WebCore::FrameLoader::commitProvisionalLoad(***::PassRefPtr<WebCore::CachedPage >) + 175
    9 com.apple.WebCore 0x00007fff84ae74c0 WebCore::DocumentLoader::commitIfReady() + 80
    10 com.apple.WebCore 0x00007fff84ae742f WebCore::DocumentLoader::finishedLoading() + 31
    11 com.apple.WebCore 0x00007fff84ba49ab WebCore::FrameLoader::finishedLoading() + 91
    12 com.apple.WebCore 0x00007fff84ba48f0 WebCore::MainResourceLoader::didFinishLoading() + 144
    13 com.apple.WebCore 0x00007fff84b70af2 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 930
    14 com.apple.WebCore 0x00007fff84b7071f WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 127
    15 com.apple.WebCore 0x00007fff84b70629 WebCore::PolicyChecker::continueAfterContentPolicy(WebCore::PolicyAction) + 601
    16 com.apple.WebKit 0x00007fff83b00e1d -[WebFramePolicyListener receivedPolicyDecision:] + 61
    17 com.apple.Safari 0x000000010003c927 0x100000000 + 248103
    18 com.apple.CoreFoundation 0x00007fff83403d2c _invoking__ + 140
    19 com.apple.CoreFoundation 0x00007fff83403bfd -[NSInvocation invoke] + 141
    20 com.apple.CoreFoundation 0x00007fff8341fa11 -[NSInvocation invokeWithTarget:] + 49
    21 com.apple.WebKit 0x00007fff83b00c14 -[_WebSafeForwarder forwardInvocation:] + 132
    22 com.apple.CoreFoundation 0x00007fff83400d4c __forwarding__ + 860
    23 com.apple.CoreFoundation 0x00007fff833fce28 CF_forwarding_prep0 + 232
    24 com.apple.WebKit 0x00007fff83b8b294 WebFrameLoaderClient::dispatchDecidePolicyForMIMEType(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::String const&, WebCore::ResourceRequest const&) + 164
    25 com.apple.WebCore 0x00007fff84b6f728 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 1864
    26 com.apple.WebCore 0x00007fff84bd77fa WebCore::MainResourceLoader::handleEmptyLoad(WebCore::KURL const&, bool) + 266
    27 com.apple.WebCore 0x00007fff84b63826 WebCore::MainResourceLoader::loadNow(WebCore::ResourceRequest&) + 422
    28 com.apple.WebCore 0x00007fff84b627ae WebCore::MainResourceLoader::load(WebCore::ResourceRequest const&, WebCore::SubstituteData const&) + 1070
    29 com.apple.WebCore 0x00007fff84b61a71 WebCore::DocumentLoader::startLoadingMainResource(unsigned long) + 113
    30 com.apple.WebCore 0x00007fff84b611bf WebCore::FrameLoader::continueLoadAfterWillSubmitForm() + 175
    31 com.apple.WebCore 0x00007fff84b60b12 WebCore::FrameLoader::continueLoadAfterNavigationPolicy(WebCore::ResourceReques t const&, ***::PassRefPtr<WebCore::FormState>, bool) + 578
    32 com.apple.WebCore 0x00007fff84b6081a WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool) + 42
    33 com.apple.WebCore 0x00007fff84b60623 WebCore::PolicyCallback::call(bool) + 83
    34 com.apple.WebCore 0x00007fff84b603ff WebCore::PolicyChecker::continueAfterNavigationPolicy(WebCore::PolicyAction) + 1471
    35 com.apple.WebKit 0x00007fff83b00e1d -[WebFramePolicyListener receivedPolicyDecision:] + 61
    36 eia 0x000000011c61bec9 -[emyWebPolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:] + 330
    37 com.apple.CoreFoundation 0x00007fff83403d2c _invoking__ + 140
    38 com.apple.CoreFoundation 0x00007fff83403bfd -[NSInvocation invoke] + 141
    39 com.apple.CoreFoundation 0x00007fff8341fa11 -[NSInvocation invokeWithTarget:] + 49
    40 com.apple.WebKit 0x00007fff83b00c14 -[_WebSafeForwarder forwardInvocation:] + 132
    41 com.apple.CoreFoundation 0x00007fff83400d4c __forwarding__ + 860
    42 com.apple.CoreFoundation 0x00007fff833fce28 CF_forwarding_prep0 + 232
    43 com.apple.WebKit 0x00007fff83b8b831 WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::NavigationAction const&, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>) + 193
    44 com.apple.WebCore 0x00007fff8543218e WebCore::PolicyChecker::checkNavigationPolicy(WebCore::ResourceRequest const&, WebCore::DocumentLoader*, ***::PassRefPtr<WebCore::FormState>, void ()(void, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool), void*) + 1678
    45 com.apple.WebCore 0x00007fff84b5d7c4 WebCore::FrameLoader::loadWithDocumentLoader(WebCore::DocumentLoader*, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 1140
    46 com.apple.WebCore 0x00007fff84b5c06b WebCore::FrameLoader::load(WebCore::DocumentLoader*) + 187
    47 com.apple.WebCore 0x00007fff84b5becb WebCore::FrameLoader::load(WebCore::ResourceRequest const&, WebCore::SubstituteData const&, bool) + 299
    48 com.apple.WebCore 0x00007fff84b5bca3 WebCore::FrameLoader::load(WebCore::ResourceRequest const&, bool) + 131
    49 com.apple.WebKit 0x00007fff83b00328 -[WebFrame loadRequest:] + 280
    50 com.apple.Safari 0x0000000100037b2d 0x100000000 + 228141
    51 com.apple.Safari 0x000000010009a3be 0x100000000 + 631742
    52 com.apple.AppKit 0x00007fff801d9152 -[NSApplication sendAction:to:from:] + 95
    53 com.apple.Safari 0x000000010004f1fb 0x100000000 + 324091
    54 com.apple.AppKit 0x00007fff801fd6be -[NSMenuItem _corePerformAction] + 365
    55 com.apple.AppKit 0x00007fff801fd428 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 121
    56 com.apple.AppKit 0x00007fff801e30c1 -[NSMenu performKeyEquivalent:] + 272
    57 com.apple.AppKit 0x00007fff801e1e69 -[NSApplication _handleKeyEquivalent:] + 559
    58 com.apple.AppKit 0x00007fff800b2aa1 -[NSApplication sendEvent:] + 3630
    59 com.apple.Safari 0x0000000100031f0e 0x100000000 + 204558
    60 com.apple.AppKit 0x00007fff80049922 -[NSApplication run] + 474
    61 com.apple.AppKit 0x00007fff800425f8 NSApplicationMain + 364
    62 com.apple.Safari 0x0000000100001d0c 0x100000000 + 7436
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff8368308a kevent + 10
    1 libSystem.B.dylib 0x00007fff83684f5d dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff83684c34 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff8368475e dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff83684088 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff83683f25 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff836a4eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff836a8cd1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff84ad8249 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff84ad435c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff836a3456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff836a3309 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff8366a2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8366a96d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff833ca3c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff833c984f CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x0000000100025673 0x100000000 + 153203
    5 com.apple.Safari 0x0000000100025603 0x100000000 + 153091
    6 libSystem.B.dylib 0x00007fff836a3456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff836a3309 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff8366a2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8366a96d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff833ca3c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff833c984f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff887f04c3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff88770e8d _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff836a3456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff836a3309 thread_start + 13
    Thread 5: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff836a4eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff836a8cd1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff885872b0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001213ef 0x100000000 + 1184751
    4 com.apple.Safari 0x000000010004441b 0x100000000 + 279579
    5 com.apple.Safari 0x00000001000442b7 0x100000000 + 279223
    6 libSystem.B.dylib 0x00007fff836a3456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff836a3309 thread_start + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff836addce select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff833ebe92 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff836a3456 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff836a3309 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff8366a2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8366a96d mach_msg + 59
    2 libSystem.B.dylib 0x00007fff836f0663 thread_suspend + 71
    3 ??? 0x000000011887d7ab 0 + 4706523051
    Thread 8:
    0 libSystem.B.dylib 0x00007fff8366a2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8366a96d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff833ca3c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff833c984f CFRunLoopRunSpecific + 575
    4 com.apple.CoreFoundation 0x00007fff833c95d6 CFRunLoopRun + 70
    5 eia 0x000000011c5efd93 spectorRunLoop(void*) + 154
    6 libSystem.B.dylib 0x00007fff836a3456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff836a3309 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff83683eaa _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff836842bc pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83683f25 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x00000000ffffffff rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000000
    rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x00007fff5fbfd9a0 rsp: 0x00007fff5fbfd968
    r8: 0x0000000103ec6650 r9: 0x0000000117e750c0 r10: 0x0000000000000014 r11: 0x0000000103ec6650
    r12: 0x00007fff709e1518 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x000000011c63d680
    rip: 0x00007fff8366d180 rfl: 0x0000000000010286 cr2: 0x0000000000000000
    Binary Images:
    0x100000000 - 0x10024ffff com.apple.Safari 4.0.3 (6531.9) <85520F41-6D13-C548-9D3F-A3013EFB1D8D> /Applications/Safari.app/Contents/MacOS/Safari
    0x11c594000 - 0x11c594fff 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
    0x11c598000 - 0x11c5a0ff7 com.apple.JavaVM 13.2.0 (13.2.0) <DD0E846A-3313-09DE-D17A-AE6A3D47DC86> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x11c5ec000 - 0x11c637fff +eia ??? (???) <20E3C866-24DD-8DCE-E669-1FCC7EEE0AE0> /usr/local/esps/eia
    0x127106000 - 0x127216fef 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
    0x7fff80031000 - 0x7fff8003fff7 libkxld.dylib ??? (???) <EE840168-1F67-6219-8BA3-C46039BCC8B3> /usr/lib/system/libkxld.dylib
    0x7fff80040000 - 0x7fff80a36fff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff80a37000 - 0x7fff80b75fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff80b76000 - 0x7fff80bc0ff7 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
    0x7fff80c48000 - 0x7fff80c55fe7 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
    0x7fff80c56000 - 0x7fff80fefff7 com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff80ff8000 - 0x7fff814fcfe7 com.apple.VideoToolbox 0.484.11 (484.11) <4577FF14-E6A7-AAD8-E6E6-ECA9CFCC6989> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff814fd000 - 0x7fff815b3fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <4B6351E5-A293-D814-36E1-E75E35C25D86> /usr/lib/libobjc.A.dylib
    0x7fff815b4000 - 0x7fff815b7fff com.apple.help 1.3.1 (41) <E311A81E-9870-A430-1E16-AFF6C92CE6E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff817f0000 - 0x7fff817f0ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff817f1000 - 0x7fff817f2fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff817f3000 - 0x7fff81802fff com.apple.NetFS 3.2.1 (3.2.1) <3C6C2D5E-C1E2-9FF9-97A2-4141A5660EBB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff81803000 - 0x7fff8180efff com.apple.CrashReporterSupport 10.6.3 (250) <F74D84F2-26D0-BE89-00A8-238857AA83C5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8180f000 - 0x7fff8180fff7 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
    0x7fff81810000 - 0x7fff818eaff7 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
    0x7fff81a5a000 - 0x7fff81b7ffef com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff81b8b000 - 0x7fff81c63ff7 com.apple.DiscRecording 5.0.5 (5050.4.3) <A9106E90-B1DF-21A1-AA19-9AB7516BE32F> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff81c6b000 - 0x7fff81cabff7 com.apple.MediaKit 10.2 (482) <7FC57927-0169-48EC-F893-1546D4EB4C91> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff81d1f000 - 0x7fff81d25fff 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
    0x7fff81d26000 - 0x7fff81dabfff 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
    0x7fff81dac000 - 0x7fff81df3ff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff81df4000 - 0x7fff81e38fe7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff81e39000 - 0x7fff81e3bfff libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff81e66000 - 0x7fff81e77fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff81e78000 - 0x7fff81e9dfe7 com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff81e9e000 - 0x7fff81ee1fff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff81ee2000 - 0x7fff825df067 com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff825fb000 - 0x7fff826b8ff7 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
    0x7fff826b9000 - 0x7fff826e4ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff826e5000 - 0x7fff826e5ff7 com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff826e6000 - 0x7fff8272ffef libGLU.dylib ??? (???) <34D118CD-F9EE-D023-FEBF-74581DEF31CD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff82730000 - 0x7fff82730ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff82731000 - 0x7fff827d1fff 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
    0x7fff827d2000 - 0x7fff827d7fff libGFXShared.dylib ??? (???) <1265FAEF-1C97-B339-28A4-4510589B067B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8294b000 - 0x7fff829dbfff com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff829dc000 - 0x7fff82a91fe7 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
    0x7fff82a92000 - 0x7fff82aa3fff SyndicationUI ??? (???) <46D6FA2B-1818-1756-A453-23EB0AC587EB> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff82aa4000 - 0x7fff82aa6fff 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
    0x7fff82aa7000 - 0x7fff82b60fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff82b61000 - 0x7fff82b7cff7 com.apple.openscripting 1.3.1 (???) <2243C17C-EE36-D5B6-3A3E-8258973FF789> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff82b7d000 - 0x7fff82b93fff com.apple.ImageCapture 6.0 (6.0) <BF702F65-8E30-E318-1B58-AE6C0D5E5715> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff82c09000 - 0x7fff82c11fff com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff82c12000 - 0x7fff82d81fe7 com.apple.QTKit 7.6.6 (1742) <7E254184-757D-E87C-5B2A-7612A2C85243> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff82d8a000 - 0x7fff82e0cfff 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
    0x7fff82e0d000 - 0x7fff8310bfe7 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
    0x7fff83122000 - 0x7fff831a0fff com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff831f2000 - 0x7fff83218fe7 libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff83219000 - 0x7fff8321cff7 libCoreVMClient.dylib ??? (???) <DBB2C09F-4BF4-326C-B775-B7A128C501E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8337e000 - 0x7fff834f3ff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8358a000 - 0x7fff835d2ff7 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
    0x7fff835d3000 - 0x7fff8364efff com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff8364f000 - 0x7fff83668fff 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
    0x7fff83669000 - 0x7fff83829fef libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    0x7fff8382a000 - 0x7fff83873ff7 com.apple.securityinterface 4.0.1 (37214) <68CC3A69-1078-EAB0-3E18-93D051C4F5E0> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff83882000 - 0x7fff83898ff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <BFFEC259-F103-B25A-BB52-1AA79116DDBA> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff83899000 - 0x7fff838dafef com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff838db000 - 0x7fff8390aff7 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
    0x7fff8390b000 - 0x7fff83aeefef libType1Scaler.dylib ??? (???) <4C5DD699-D329-CBC4-018B-D9033DB6A3D6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff83aef000 - 0x7fff83c6bff7 com.apple.WebKit 6533 (6533.16) <B0C2B2F5-9BC1-5907-17A7-E2039C1EF57B> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff83c99000 - 0x7fff83ca8ff7 com.apple.opengl 1.6.8 (1.6.8) <0CDC4F98-7981-A114-1778-AF171075138E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff83ca9000 - 0x7fff83ca9ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff83caa000 - 0x7fff83cb6fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5C876577-ACB7-020C-F7DB-EE0135C3AB8D> /usr/lib/libbz2.1.0.dylib
    0x7fff83ff8000 - 0x7fff84802fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff84826000 - 0x7fff84827ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff84828000 - 0x7fff8482eff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8484b000 - 0x7fff84ad1ff7 com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff84ad2000 - 0x7fff85741fe7 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
    0x7fff85742000 - 0x7fff857f1fff edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff858a8000 - 0x7fff858bcfff libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff858bd000 - 0x7fff858ceff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
    0x7fff858cf000 - 0x7fff8595bfef SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff85994000 - 0x7fff85a02fff com.apple.AppleVAFramework 4.9.20 (4.9.20) <78727165-8D44-0354-6F6C-68FD798E04A1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff85a05000 - 0x7fff85a51fff libauto.dylib ??? (???) <8145CA34-EA03-11D2-5C60-02C1E5750593> /usr/lib/libauto.dylib
    0x7fff85a52000 - 0x7fff85a8ffff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff85a90000 - 0x7fff85ad1ff7 com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff85b57000 - 0x7fff85c22fe7 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
    0x7fff85c23000 - 0x7fff85c5efff 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
    0x7fff85cc0000 - 0x7fff85d2afe7 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
    0x7fff85d2b000 - 0x7fff85da8fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff85da9000 - 0x7fff85e11fff 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
    0x7fff85e62000 - 0x7fff85f62ff7 com.apple.DiskImagesFramework 10.6.3 (283) <F7BEC366-1EC5-4881-D82F-ADC43C2D592A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff85f63000 - 0x7fff85f9bfef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
    0x7fff85f9c000 - 0x7fff8615afff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
    0x7fff8615b000 - 0x7fff861a0fff com.apple.CoreMediaIOServices 130.0 (1035) <567D7949-3115-4E78-8F27-B28968CC25F7> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff861a1000 - 0x7fff86516fe7 com.apple.RawCamera.bundle 3.0.3 (529) <2E6B251A-C5A5-A3F9-832B-BB1958F938E9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff86517000 - 0x7fff86626fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff86627000 - 0x7fff86869fef com.apple.AddressBook.framework 5.0.2 (870) <A1278575-53F2-CC00-7306-E49713FEC7C6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff86892000 - 0x7fff86896ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff86897000 - 0x7fff8689cfff libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8689d000 - 0x7fff868bdff7 com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff868be000 - 0x7fff868d3ff7 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
    0x7fff8693a000 - 0x7fff8697dff7 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
    0x7fff8697e000 - 0x7fff869cffe7 com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff869d0000 - 0x7fff869dbff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <5CA110A2-0712-F774-E7CF-AA7A2A106DAC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff869dc000 - 0x7fff869e0ff7 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
    0x7fff869e1000 - 0x7fff869e7ff7 IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff869e8000 - 0x7fff869edff7 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
    0x7fff86a07000 - 0x7fff86ad7ff7 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
    0x7fff86ad8000 - 0x7fff86bf1fef libGLProgrammability.dylib ??? (???) <B057FC52-6A97-F450-48D8-325A70423A53> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff86bf2000 - 0x7fff86e2dfef 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
    0x7fff86e2e000 - 0x7fff86e56fff com.apple.DictionaryServices 1.1.1 (1.1.1) <CC593ECB-8FFA-BF81-0B0D-F8C606B31318> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff86e57000 - 0x7fff86f17fff libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff86f18000 - 0x7fff86f1bff7 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
    0x7fff86f1c000 - 0x7fff86f6bfef libTIFF.dylib ??? (???) <A66CBA9C-A38D-5EDB-BFB5-CB398F033D6F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff86f78000 - 0x7fff8708ffef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <4355C785-9388-1061-6427-D004E92A3766> /usr/lib/libxml2.2.dylib
    0x7fff870f1000 - 0x7fff87219ff7 com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff8721a000 - 0x7fff872cffe7 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
    0x7fff872d0000 - 0x7fff8734ffef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff87350000 - 0x7fff87351fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff87352000 - 0x7fff8738efe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <1E041185-131C-C237-C250-38BE933A269A> /usr/lib/libcurl.4.dylib
    0x7fff873cf000 - 0x7fff8740cff7 libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8744d000 - 0x7fff8744dff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8745a000 - 0x7fff87540fe7 com.apple.DesktopServices 1.5.7 (1.5.7) <8A697128-B6CA-E4A8-C200-6520D5A35FBE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff87541000 - 0x7fff87548fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff87549000 - 0x7fff87567fff libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff87568000 - 0x7fff87602fff com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff87644000 - 0x7fff87a88fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff87a89000 - 0x7fff87dbcfe7 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
    0x7fff87dbd000 - 0x7fff88026ff7 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
    0x7fff88027000 - 0x7fff880a4fef com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff880a5000 - 0x7fff880fafef com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff880fb000 - 0x7fff88159ff7 com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8815a000 - 0x7fff88193ff7 com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff881d3000 - 0x7fff88214fff com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff88215000 - 0x7fff88215ff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff88216000 - 0x7fff8824eff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <94776929-EF76-D979-5412-940C845BAC5D> /usr/lib/libssl.0.9.8.dylib
    0x7fff8824f000 - 0x7fff88405fef 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
    0x7fff88406000 - 0x7fff88427fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff88428000 - 0x7fff8852cfff com.apple.PubSub 1.0.5 (65.19) <10137D49-8771-05F0-AC60-B41F6A8E0D87> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8852d000 - 0x7fff88574fef com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff88575000 - 0x7fff8875ffe7 com.apple.JavaScriptCore 6533 (6533.13) <C2D33B72-06F1-B789-6FD3-FB09EEB6C907> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff88760000 - 0x7fff889e1fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff889e2000 - 0x7fff88a4eff7 com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff88a54000 - 0x7fff88a6afef libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
    0x7fff88a6b000 - 0x7fff88a7dfe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff88a7e000 - 0x7fff88b0dfff 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
    0x7fff88b0e000 - 0x7fff88b31fff com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff88b34000 - 0x7fff88c3eff7 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
    0x7fff88c3f000 - 0x7fff88c3fff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff88c71000 - 0x7fff88c72ff7 com.apple.TrustEvaluationAgent 1.1 (1) <040B71B1-F8BD-1605-057E-E80DBDE1FE59> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff88c73000 - 0x7fff88c87ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff88c88000 - 0x7fff88cb9fef libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff88d12000 - 0x7fff88e0aff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
    0x7fff88e1a000 - 0x7fff88e7cfe7 com.apple.datadetectorscore 2.0 (80.7) <5B6AABCA-C75A-D28F-6A2F-59648F0ABFC8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff88fff000 - 0x7fff89030fff libGLImage.dylib ??? (???) <2F18DB77-CF77-1311-9E20-FE460090C166> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff89031000 - 0x7fff89080fef com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BD71B20B-C530-6D10-47A4-9838CF292911> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Model: iMac11,1, BootROM IM111.0034.B02, 4 processors, Intel Core i7, 2.8 GHz, 16 GB, SMC 1.54f36
    Graphics: ATI Radeon HD 4850, ATI Radeon HD 4850, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x8F), Atheros 9280: 2.1.9.8.1
    Bluetooth: Version 2.3.3f8, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Shared Networking Adapter, Ethernet, en3
    Network Service: Parallels Host-Only Networking Adapter, Ethernet, en4
    Serial ATA Device: Hitachi HDS722020ALA330, 1.82 TB
    Serial ATA Device: OPTIARC DVD RW AD-5680H, 576.8 MB
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: iPad, 0x05ac (Apple Inc.), 0x129a, 0xfa140000
    USB Device: 2big quadra, 0x059f (LaCie), 0x101c, 0xfa130000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa120000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215, 0xfa111000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: EyeTV Diversity, 0x0fd9, 0x0011, 0xfd130000
    USB Device: Photosmart C4500 series, 0x03f0 (Hewlett Packard), 0x6b11, 0xfd140000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd110000

    Hi
    first thing - your report is for Safari 4.0.3, although the report shows that you did install Safari 5...
    did you reinstall Safari from disk afterwards, or move it around?
    Regardless, several users here have said that 4.0.3 works with the newer frameworks, so perhaps the
    usr/local/esps/eia
    is the issue here - I'd certainly try removing that & getting Safari 5 back.

  • Error while compiling procedure

    Hai All
    I have created a procedure its get created and while executing its get an error
    My Requirement
    I have a table called attendance and the fields are
    Empcode var,name var intime date,outtime date ,WTime number, ETime number ,L_in number, L_out number
    So Now i need to calculate How many minutes the employees come late for working hours The shifts starts at 0815 and the grace mins Is 5 min SO after 0820 i need to calculate L_In and The shifts closed At 1645 and Now i need to calculate How many min Before He is going
    MY Procedure
    create or replace PROCEDURE L_TIME(in_time dail_att.intime%type
    ,out_time dail_att.outtime%type,
    id_in in dail_att.idein%type,
    id_out out dail_att.ideout%type,
    F_date dail_att.attend_Date%type)
    IS
    BEGIN
    If to_char(in_time,'hh24mi') > 0820 and to_char(out_time,'hh24mi') < 1650 then
         if id_in is null then
              update dail_att set idein= (to_char(intime,'hh24mi')-0820) where attend_date= f_date;
         else
                   update dail_att set ideout= (to_char(outtime,'hh24mi')-1650)where attend_date=f_date;
         end if;
    While iam executin like this
    execute L_TIME ('01-jan-2010 0820','01-jan-2010 1520','01-jan-2010');
    I got an error How to solve these error
    Thanks In Advance
    Srikkanth.M

    Assuming your parameter are based on DATE table columns...
    you are passing in VARCHAR into the procedure. These needs to be implicitly converted to a DATE, depending on your NLS settings. It's better to pass in DATEs instead of strings.
    to_date ('01-jan-2010 0820','dd-mon-yyyy hh24mi')In your procedure compare DATEs to DATEs; don't convert them to Char. You rely a lot on implicit datatype conversion, like this one
    to_char(in_time,'hh24mi') > 0820 Here you compare Char with a NUMBER....
    Next time also post the exception that you are getting.

Maybe you are looking for

  • Help! How to share iPhoto pictures between users on same computer

    This has probably been posted before. If so, I appologize. My wife and I have seperate log ins and she can't see any of the photos we've imported on my log-in. Is there a neutal folder or user priveledge I need to set? I've tried everything I can thi

  • Conflicts Between Different iPod Models ?

    I started with an iPhone. Later on I added a 2 GB iPod Shuffle. Both worked with iTunes on same PC computer, no problem. Recently I added an iPod Classic. Now iPod Shuffle is not recognized by iTunes or my PC but it does charge. I have tried another

  • Wanted to run a background job in diff app server

    i wanted to run a job in diff app server... how can i do it. sap guru

  • Order by cluse in matrix report

    Hello Friends, I have a month wise summary statment in matrix report formate, base on the following query select to_char(pvmdate,'Mon-RRRR') as pvmdate, pvtamnt,pvtwhta,pvt.lv4code I have use ORDER BY TO_DATE(PVMDATE,'Mon-RRRR') but this order by clu

  • Nikon d7000 support

    I wonder if Camera Raw will support the new Nikon d7000 camera sometime soon? How does one find out? I just got one and always shoot in RAW mode but now I can't open any photos unless I install Nikon's software which I will not do.