How to make a String not case sensitive

Hi,
In my application, I test
[   if (record.startsWith(remark))  ]
The value of [remark] is a fiexd word (e.g. "Hello").
But I would the test passed for all other words which have the same letters as it sucu as "HELLO", "HELlo" ...
Do you have any good idea?
Thx.
Pengyou

use
if(record.toLowerCase.startsWith("hello")) ..

Similar Messages

  • How make IN operator not case sensitive ?

    create table Payment_Methods (
    Payment_Method_ID number primary key,
    Payment_Method varchar2(11)
    check (Payment_Method in ( 'Cash','Check','Credit Card' ) ));
    the problem here .... if I insert in the Payment_Method column
    by lower case or by upper case , the error will appear like this :-
    SQL> insert into Payment_Methods values (
    2 1,'cash');
    insert into Payment_Methods values (
    ERROR at line 1:
    ORA-02290: check constraint (DE.SYS_C0010420) violated
    and if upper case :-
    SQL> ed
    Wrote file afiedt.buf
    1 insert into Payment_Methods values (
    2* 1,'CASH')
    SQL> /
    insert into Payment_Methods values (
    ERROR at line 1:
    ORA-02290: check constraint (DE.SYS_C0010420) violated
    only initcap case working (like I wrote in create table statement )
    SQL> ed
    Wrote file afiedt.buf
    1 insert into Payment_Methods values (
    2* 1,'Cash')
    SQL> /
    1 row created.
    How can I make the Payment_Method column NOT case sensitive ??!!!!

    I don't understand this check constraint at all. What is the purpose?
    You have a table to hold all possible payment methods. At the same time you are not allowing any new payment methods but the ones defined in the check constraint.
    Either use a check constraint to check the correct spelling without checking the values, like check (InitCap(Payment_Method) = Payment_Method) or use a database trigger and a unique key constraint to transform all new values to the correct spelling method (UPPER or INITCAP).

  • How do I make the my login page username field not case-sensitive?

    Can anyone tell me how to make my username field not case-sensitive?
    This is my code
    <html>
    <body>
    <%@ page import="java.sql.*" %>
    <%
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection login = DriverManager.getConnection("jdbc:odbc:Testing","abc","abc");
    Statement stmtLogin = login.createStatement();
    String sqlLogin = "SELECT UserName, UserPassword FROM Users WHERE UserName='"+username+"'";
    ResultSet rsLogin = stmtLogin.executeQuery(sqlLogin);
    while(rsLogin.next())
    String suser = rsLogin.getString("UserName");
    String spass = rsLogin.getString("UserPassword");
    if(username.equals(suser) && password.equals(spass))
    HttpSession mysession = request.getSession(true);
    mysession.setAttribute("username",request.getParameter("username"));
    response.sendRedirect("hello.jsp");
    else if(!(username.equals(suser) && password.equals(spass)))
    response.sendRedirect("index.jsp?message=Invalid%20Username%20or%20Password");
    login.close();
    %>
    </body>
    </html>

    if(username.equalsIgnoreCase(suser) && password.equals(spass))Hope this helps!

  • How to make oracle is case insentive ( not case sensitive)

    SqlServer by default is NOT case sensitive (data content) while Oracle by default is case sensitive (data content).
    please help me to give the solution
    How to make oracle is case insentive ( not case sensitive)
    if there is anyway to make Oracle behave like SqlServer changing NLS settings or any other Oracle settings?
    I have solution for application level . it is working fine
    Possible solutions:
    1. You want to store data case insensitive: do an 'insert...
    values(upper('Abcd'))...'.
    This will put your data in upper case into the tables.
    2. Your data will be mixed-case and you want to select them case
    insensitive:
    create 'function based indexes' on every column you want to use in
    your where-clauses.
    Then 'select ... where <column_name> = 'ABCD'.

    What version of Oracle? Oracle 10g has a capability that can toggle this feature on and off at the session level. Prior versions do not.
    For prior versions you usually have to make use of the upper and/or lower functions in your queries. Sometimes a function based index, FBI, is used to handle this.
    HTH -- Mark D Powell --

  • How to make MySQL JDBC Driver case-insensitive

    Hi,
    I'm porting a jdbc application from oracle to mysql. One of the problem is that oracle's column names are case insensitive, whereas CODE in mySql is different from code (see example posted below).
    I know that I can change the source code to use always the same case. But is there a way to make the mysql jdbc driver case-insensitive ?
    import java.sql.*;
    /* getString(String) is case sensitive for org.gjt.mm.mysql.Driver driver */
    mysql> describe currency;
    +-----------------+----------------+------+-----+----------------+-------+
    | Field           | Type           | Null | Key | Default        | Extra |
    +-----------------+----------------+------+-----+----------------+-------+
    | code            | char(3)        |      | PRI |                |       |
    | name            | varchar(40)    |      | UNI |                |       |
    | shortCode       | char(2)        | YES  | MUL | NULL           |       |
    | exchangeRate    | decimal(19,12) |      |     | 0.000000000000 |       |
    | changed         | decimal(1,0)   |      |     | 0              |       |
    | markedFlag      | decimal(1,0)   |      |     | 0              |       |
    | updateTimestamp | timestamp(14)  | YES  |     | NULL           |       |
    +-----------------+----------------+------+-----+----------------+-------+
    7 rows in set (0.00 sec)
    getObject(1)=EUR
    Trying code
    getObject("code")=EUR
    Trying Code
    java.sql.SQLException: Column 'Code' not found.
         at org.gjt.mm.mysql.ResultSet.findColumn(ResultSet.java:1213)
         at org.gjt.mm.mysql.ResultSet.getObject(ResultSet.java:1188)
         at mySqlDemo.main(mySqlDemo.java:61)
    getObject(1)=USD
    Trying code
    getObject("code")=USD
    Trying Code
    java.sql.SQLException: Column 'Code' not found.
         at org.gjt.mm.mysql.ResultSet.findColumn(ResultSet.java:1213)
         at org.gjt.mm.mysql.ResultSet.getObject(ResultSet.java:1188)
         at mySqlDemo.main(mySqlDemo.java:61)
    public class mySqlDemo {
         public final static void main(String[] args) {
              try {
                   /*== database constants ==*/
                   String DBHOST = "localhost";
                   String DBNAME = "test";
                   String DBUSER = "test";
                   String DBPASS = "";
                   String DBDRIVER = "org.gjt.mm.mysql.Driver";
                   /*== setup database driver and connect ==*/
                   Class.forName(DBDRIVER).newInstance();
                   String conurl = "jdbc:mysql://"+DBHOST+"/"+DBNAME;
                   Connection db = DriverManager.getConnection(conurl,DBUSER,DBPASS);
                   /*== create sql query and execute ==*/
                   //String sql = "select code from currency";
                   String sql = "select Currency.code, Currency.name, Currency.shortCode, Currency.exchangeRate, Currency.changed, Currency.markedFlag, Currency.updateTimestamp from Currency order by code";
                   Statement stmnt = db.createStatement();
                   ResultSet rs = stmnt.executeQuery(sql);
                   /*== display results ==*/
                   while(rs.next()) {
                          System.out.println("getObject(1)=" + rs.getObject(1));
                          // works, because "Currency.code" has been selected
                          System.out.println("Trying code");
                          try {
                                 System.out.println("getObject(\"code\")=" + rs.getObject("code"));
                          } catch(SQLException ex) {
                               ex.printStackTrace();
                         // case sensitive !
                          // does not work, because "Currency.code" has been selected
                          // "code" != "Code"
                          System.out.println("Trying Code");
                          try {
                                 System.out.println("getObject(\"Code\")=" + rs.getObject("Code"));
                          } catch(SQLException ex) {
                               ex.printStackTrace();
              } catch(Throwable t) {
                   t.printStackTrace();
    }

    One of the problem is that oracle's column names are
    case insensitive, whereas CODE in mySql is different from code (see example posted below).I doubt that.
    SQL standards are rather specific that columns names are case insensitive unless quoted identifiers are used. And presumably you are doing that.
    What you are seeing is a difference in drivers not databases.
    I would guess that the only way to change the behaviour is to modify your code. If you uppercase everything it should work. Or you could use positional rather than named column extraction.

  • Treeset.contains(String) is case sensitive ?

    hi
    i noticed that treeset.contains(String) is case sensitive.
    when you all are testing keywords do you therefore put everything to lower case to test ?
    just double checking something extremely simple

    Well strings are case sensitive. Try using String.equalsIgnoreCase(String) to compare strings without regards to case. As for using it in collections, you may want to convert all strings to upper or lower case before placing them into collections (this may not always be possible due to "business reasons").
    Note: contains(String) on the Collection interface uses Object.equals(Object o) to test object equality. The implentation of equals on String will return true if and only if the argument is not null and is a String object that represents the same sequence of characters as this object. Case will not be ignored in this implementation.
    Hope this helps.

  • How to make "payment terms" not modifiable in sales order

    Hello every 1,
    please help, i want to know:
    how to make "payment terms" not modifiable in a sales order , as we know it comes directly from CMR and client wants "PAYMENT TERMS" to be not modifiable.
    Look forward for your response.
    Thanks in Advance,
    Deepak

    You need to use SHD0 or userexit chnages, like always determine from customer master, if user changes, give message like not modifiable  or ask abaper to make non modifable field

  • How to make dyn/admin not to prompt for username and password?

    Hello all
    How to make dyn/admin not to prompt for username and password? I am writing a selenium job to automate cache invalidation to load test a production issue we are facing. Selenium is opening a fresh firefox session and prompting for username and password every time. I am also trying to modify my script such that it will use the same session again and not prompt for username and password. But I thought of asking this question in the group.
    Your inputs will help a lot.
    Thanks,
    Sundar

    Hi,
    You can set enabled property of /atg/dynamo/servlet/adminpipeline/AuthenticationServlet/ to false. It will not prompt for authentication.
    Gopi

  • Can Search help in Web Portal be made so that it is NOT case sensitive?

    We have a number of reports that users access via the web portal.  Most of these reports have a variable selection screen that appears so that users can pre-filter the report before executing it.  When the user selects search help on any of the variables and attempts to search the text values, the search is case-sensitive. But we have some data stored all caps and some data stored mixed case, so this isn't very convenient for the user.  I would like to be able to set up the search window so that the searches are not case sensitive.  Is there a global setting that can accomplish this, or can the search page be customized?  Any guidance would be appreciated.
    Thanks.

    I have the same issue. There was a fix in 3.5 using function module RSA_CHA_BUILD_QUERY however this doesn't exist in 7.
    Any thoughts would be much appreciated.

  • How to make iTunes Match not convert my files ALACs in 256 kbps (VBR)? How to get iTunes to convert CDs to Apple loselss?

    How to make iTunes Match not convert my files ALACs in 256 kbps (VBR)? How to get iTunes convert CDs in Apple loselss? The difference between 256 (VBR) and Apple Losless is very clear...

    Dear Michael, good day!
    1. As per your instruction, I turned off iTM.
    Small discrepancy – where are two screens with iTM switch:
    -Settings > iTunes & App Store. 
    -Settings > Music
    I switched OFF in both.
    NB: I turned device to English for convenience.
    2. My next step was Setting > General > Usage – tapped {Music};
    {All music} screen appeared; I swiped it and taped Delete. 
    3. I performed “hard reset” …………………………………..
    4. Switched back On iTM
    5. Taped Music app on Home screen
    iTM has started –  (it took 18 minutes  to completed, 60 mbps Wi-Fi speed )
    Regret to inform… All the same:
    Erase and reset to factory default? Or I did smf wrong?

  • How to make a JScrollPane not getting Focus?

    How to make a JScrollPane not getting Focus?
    When i tab out from a textfield inside a scroll pane focus is going to ScrollPane .And if i press tab once more then only focus is going to other textField which is outside the scrollpane.
    For me when i press tab from a text field inside a scrollPane ,i should go to textfield out side the scroll pane.
    satish

    Hi,
    I've the same problem, that I have to double click on tab
    to step from a textfield with a scrollpane to the next textfield in my panel.
    I tried to implement a FocusListener on my JScrollPane, but without success.
    Can you tell me in detail how to implement this listener ?
    Kind regards
    Andy Kanzlers

  • Not case sensitive input of username?

    I have a login section that has a username and password input
    field. I am not sure if I am doing this right, but since there is
    only one username and one password, this is how I did this.
    function checkPassword(userN:String, passW:String):Void {
    if(userN == "collections" && passW == "winter2008"){
    //let user proceed
    }else{
    //error message
    My question now is how can I have the username not be case
    sensitive. Is that possible?
    Thanks a lot for any help!

    You can use the toLowerCase(), or toUpperCase() methods to
    give you a string that you can reliably compare. You may also want
    to sort out any stray space characters that the user may type in.
    Try something like this:

  • How to make a regular expression case insensitive?

    Hi,
    I am using SAP UI5 .
    I am validating the user input using a regular expression to make sure user dose not enter a keyword which is reserved.
    var regexAppID = /^(?=^(?:(?!(^Admin$|^AdminData$|^Push$|^smp_cloud$|^resource$|^test-resources$|^resources$|^Scheduler$|^odata$|^applications$|^Connections$|^public|^Public$|[\.]{2,}|^[\.])).)*$)(?=^[a-zA-Z]+[a-zA-Z0-9_\.]*$).*$/;
    textField.mBindingInfos.value.type.oConstraints.search = regexAppID;
    The regex blocks the user from entering the keywords Admin,AdminData etc.
    It works fine if the user enters the value as it is given in regex (ie case sensitive example "Admin").
    But when user enters "admin" or "aDmin" etc the regex is not catching it and my server crashes as it bypasses these keywords.

    Can't you use this expression?
    ^/(?!ignoreme$)(?!ignoreme2$)[a-z0-9]+$
    Then you will have only a match when the word is something else then "ignoreme" or "ignorme2".
    Why don't you just check it in an IF statement? if(input==="ignoreme" or ... ) ? It's both static.. or you could put all options in an array and use the statement indexOf to find if it is in the array.
    JavaScript Array indexOf() Method
    Kind regards,
    Wouter

  • How do I remove a "created" case sensitive disk image?

    Thanks for taking the time to read this, and thanks in advance for any and all advice. =)
    I used this command in an effort to ready my machine for android sdk and kernel editing (more exploratory and self education than actual editing). I want to understand and learn more the linux environment, but have decided ubuntu would be a better way to do this. I have a relatively small SSD and need this 40gb back to dual boot.
    hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 40g ~/android.dmg
    Unfortunately, I have already proven I'm not worthy of such adventure as I can not seem to figure out how to remove the 40gb dmg and free the space.
    I can eject, erase and move to trash but the 40gb just doesn't come free.
    Thanks!!

    Problem solved. Unmount, move to trash. Moderator please remove.

  • Repeatable hard crash in webkit.dylib AIR 2.7 on OS X Lion - NOT case sensitive machine

    We've got a customer who is getting a repeated hard crash in AIR when he tries to run our app. At first we thought, "Oh, another case-sensitive Mac issue" and we told him to run the case sensitive command-line fix, but it turns out that isn't the issue. Is his version of webkit.dylib not compatible somehow? He's the only one reporting this. Any ideas would be appreciated!
    Many thanks,
    Taylor Brown
    Lead Software Engineer
    YouNeedABudget,com
    Customer Crash report
    Process:        YNAB 3 [968]
    Path:            /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
    Identifier:      com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1
    Version:        3.5.3.4 (???)
    Code Type:      X86 (Native)
    Parent Process:  launchd [130]
    Date/Time:      2011-08-28 00:45:04.359 -0600
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          123948 sec
    Crashes Since Last Report:          29
    Per-App Interval Since Last Report:  1665 sec
    Per-App Crashes Since Last Report:  19
    Anonymous UUID:                      F1E1AA94-7BE2-4C59-BC1D-FFAC570B2F5F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000000c
    VM Regions Near 0xc:
    --> __PAGEZERO            0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
        __TEXT                0000000000001000-0000000000007000 [  24K] r-x/rwx SM=COW  /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
    Application Specific Information:
    objc[968]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0  Webkit.dylib                      0x0bbe09d6 WebKitGetAPI + 288226
    1  Webkit.dylib                      0x0bc8e33f WebKitGetAPI + 999243
    2  Webkit.dylib                      0x0bbe2019 WebKitGetAPI + 293925
    3  Webkit.dylib                      0x0bcdd000 WebKitGetAPI + 1321996
    4  Webkit.dylib                      0x0bcdd48b WebKitGetAPI + 1323159
    5  Webkit.dylib                      0x0bfaae2a WebKitGetAPI + 4262454
    6  Webkit.dylib                      0x0bfa8d2e WebKitGetAPI + 4254010
    7  Webkit.dylib                      0x0bb9a6c8 WebKitGetAPI + 724
    8  com.adobe.AIR                    0x0265846a shaders_acos_ss + 549306
    9  com.adobe.AIR                    0x02658564 shaders_acos_ss + 549556
    10  com.adobe.AIR                    0x01fa5ff0 0x1f89000 + 118768
    11  com.adobe.AIR                    0x01fa0c55 0x1f89000 + 97365
    12  com.adobe.AIR                    0x01fa14e7 0x1f89000 + 99559
    13  com.adobe.AIR                    0x01f9a0fa 0x1f89000 + 69882
    14  com.apple.Foundation              0x94e5351d __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49
    15  com.apple.CoreFoundation          0x92dc1843 ___CFXNotificationPost_block_invoke_1 + 275
    16  com.apple.CoreFoundation          0x92d8c658 _CFXNotificationPost + 2776
    17  com.apple.Foundation              0x94e3e70a -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    18  com.apple.Foundation              0x94e5399e -[NSNotificationCenter postNotificationName:object:] + 55
    19  com.apple.AppKit                  0x916556d7 -[NSApplication terminate:] + 2217
    20  com.apple.Foundation              0x94e47ebe __NSFireDelayedPerform + 615
    21  com.apple.CoreFoundation          0x92d99256 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    22  com.apple.CoreFoundation          0x92d98be7 __CFRunLoopDoTimer + 743
    23  com.apple.CoreFoundation          0x92d77ce0 __CFRunLoopRun + 1888
    24  com.apple.CoreFoundation          0x92d771ec CFRunLoopRunSpecific + 332
    25  com.apple.CoreFoundation          0x92d77098 CFRunLoopRunInMode + 120
    26  com.apple.HIToolbox              0x9a9d2487 RunCurrentEventLoopInMode + 318
    27  com.apple.HIToolbox              0x9a9d9dc3 ReceiveNextEventCommon + 381
    28  com.apple.HIToolbox              0x9a9d9c32 BlockUntilNextEventMatchingListInMode + 88
    29  com.apple.AppKit                  0x9164e8ec _DPSNextEvent + 678
    30  com.apple.AppKit                  0x9164e159 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    31  com.apple.AppKit                  0x9164a4cb -[NSApplication run] + 904
    32  com.adobe.AIR                    0x01f8e638 0x1f89000 + 22072
    33  com.adobe.AIR                    0x01f8e97e 0x1f89000 + 22910
    34  com.apple.CoreFoundation          0x92dd6901 -[NSObject performSelector:withObject:] + 65
    35  com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1    0x00002ff7 start + 4363
    36  com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1    0x00001fe7 start + 251
    37  com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1    0x00001f15 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0  libsystem_kernel.dylib            0x9a62090a kevent + 10
    1  libdispatch.dylib                0x9adc9ccc _dispatch_mgr_invoke + 969
    2  libdispatch.dylib                0x9adc871b _dispatch_mgr_thread + 53
    Thread 2:
    0  libsystem_kernel.dylib            0x9a61f83e __psynch_cvwait + 10
    1  libsystem_c.dylib                0x99306e78 _pthread_cond_wait + 914
    2  libsystem_c.dylib                0x992ae82a pthread_cond_wait + 48
    3  com.adobe.AIR                    0x0249270b r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1919596
    4  com.adobe.AIR                    0x022de172 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 132307
    5  com.adobe.AIR                    0x024927ef r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1919824
    6  com.adobe.AIR                    0x02492869 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1919946
    7  com.adobe.AIR                    0x02492904 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1920101
    8  libsystem_c.dylib                0x99302ed9 _pthread_start + 335
    9  libsystem_c.dylib                0x993066de thread_start + 34
    Thread 3:
    0  libsystem_kernel.dylib            0x9a61f83e __psynch_cvwait + 10
    1  libsystem_c.dylib                0x99306e78 _pthread_cond_wait + 914
    2  libsystem_c.dylib                0x992ae82a pthread_cond_wait + 48
    3  com.adobe.AIR                    0x0249270b r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1919596
    4  com.adobe.AIR                    0x022de172 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 132307
    5  com.adobe.AIR                    0x024927ef r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1919824
    6  com.adobe.AIR                    0x02492869 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1919946
    7  com.adobe.AIR                    0x02492904 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1920101
    8  libsystem_c.dylib                0x99302ed9 _pthread_start + 335
    9  libsystem_c.dylib                0x993066de thread_start + 34
    Thread 4:: com.apple.NSURLConnectionLoader
    0  libsystem_kernel.dylib            0x9a61dc22 mach_msg_trap + 10
    1  libsystem_kernel.dylib            0x9a61d1f6 mach_msg + 70
    2  com.apple.CoreFoundation          0x92d6e9ea __CFRunLoopServiceMachPort + 170
    3  com.apple.CoreFoundation          0x92d77b14 __CFRunLoopRun + 1428
    4  com.apple.CoreFoundation          0x92d771ec CFRunLoopRunSpecific + 332
    5  com.apple.CoreFoundation          0x92d77098 CFRunLoopRunInMode + 120
    6  com.apple.Foundation              0x94ea788c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7  com.apple.Foundation              0x94e9b5ed -[NSThread main] + 45
    8  com.apple.Foundation              0x94e9b59d __NSThread__main__ + 1582
    9  libsystem_c.dylib                0x99302ed9 _pthread_start + 335
    10  libsystem_c.dylib                0x993066de thread_start + 34
    Thread 5:: com.apple.CFSocket.private
    0  libsystem_kernel.dylib            0x9a61fb42 __select + 10
    1  com.apple.CoreFoundation          0x92dc59e5 __CFSocketManager + 1557
    2  libsystem_c.dylib                0x99302ed9 _pthread_start + 335
    3  libsystem_c.dylib                0x993066de thread_start + 34
    Thread 6:
    0  libsystem_kernel.dylib            0x9a62002e __workq_kernreturn + 10
    1  libsystem_c.dylib                0x99304ccf _pthread_wqthread + 773
    2  libsystem_c.dylib                0x993066fe start_wqthread + 30
    Thread 7:
    0  libsystem_kernel.dylib            0x9a62002e __workq_kernreturn + 10
    1  libsystem_c.dylib                0x99304ccf _pthread_wqthread + 773
    2  libsystem_c.dylib                0x993066fe start_wqthread + 30
    Thread 8:
    0  libsystem_kernel.dylib            0x9a62002e __workq_kernreturn + 10
    1  libsystem_c.dylib                0x99304ccf _pthread_wqthread + 773
    2  libsystem_c.dylib                0x993066fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x0c200800  ebx: 0x0bbe07f4  ecx: 0x08d2c2d8  edx: 0x00000000
      edi: 0x0c200800  esi: 0x00000000  ebp: 0xbfffde88  esp: 0xbfffddf0
      ss: 0x00000023  efl: 0x00010246  eip: 0x0bbe09d6  cs: 0x0000001b
      ds: 0x00000023  es: 0x00000023  fs: 0x00000000  gs: 0x0000000f
      cr2: 0x0000000c
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x6ff7 +com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1 (3.5.3.4 - ???) <72E5E138-08AE-26DD-C1B8-F70175D06CC3> /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
      0x300000 -  0x3adff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x3f2000 -  0x3f3ffc  ATSHI.dylib (??? - ???) <B244624E-E09E-34B2-A185-EB30AF08A95D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x1f89000 -  0x2c40fd3 +com.adobe.AIR (??? - 2.7.1.19610) <A7DA14CC-4CE8-96D5-03CF-6EA145FB4835> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x2e6f000 -  0x2e73ffb  libFontRegistryUI.dylib (??? - ???) <E986346C-8132-33B6-8525-AA2A3233F99C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0x2ed0000 -  0x2ed3fef  com.apple.LiveType.component (2.1.3 - 2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x2ed8000 -  0x2f3dfde  com.apple.LiveType.framework (2.1.3 - 2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x2f5d000 -  0x2fb5fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x2fd9000 -  0x2fdcff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x2fe1000 -  0x2fe5ffb  com.apple.audio.AudioIPCPlugIn (1.2.0 - 1.2.0) <8A4CC918-D47D-3F33-8420-0698071A5944> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0x2fea000 -  0x2ff0ffb  com.apple.audio.AppleHDAHALPlugIn (2.1.1 - 2.1.1f11) <8CA3DFAA-56F6-37B1-9C93-16C5C3A0A00F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x4834000 -  0x4852ff7 +com.numark.ns6.hal (??? - 2.1.0) <C4B53351-2CB6-BA09-D19B-350C903D86A7> /Library/Audio/Plug-Ins/HAL/NumarkNS6AudioHAL.plugin/Contents/MacOS/NumarkNS6AudioHAL
    0x4861000 -  0x487eff3 +com.numark.ns7.hal (??? - 2.0.2) <A73C3AC5-4A1B-BC91-7FCA-02E231FE7E2D> /Library/Audio/Plug-Ins/HAL/NumarkNS7AudioHAL.plugin/Contents/MacOS/NumarkNS7AudioHAL
    0x488c000 -  0x48a9ffb +com.numark.V7.hal (??? - 2.0.3) <2582418D-CE06-69BF-B706-EE402BE8AB46> /Library/Audio/Plug-Ins/HAL/NumarkV7AudioHAL.plugin/Contents/MacOS/NumarkV7AudioHAL
    0x48b7000 -  0x48d4ffb +com.ploytec.xonedx.hal (??? - 2.0.2) <09D53E8E-2D43-1DAB-A525-A1F3E0EE12F3> /Library/Audio/Plug-Ins/HAL/XONE_DX.plugin/Contents/MacOS/XONE_DX
    0x7998000 -  0x79a6ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D3F1CC34-55EB-3D33-A7C2-025D5C8025D0> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xadf9000 -  0xae0bfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <ADEB72F9-0048-3C87-AD9B-71AA57D523E9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xbb94000 -  0xc10eff7 +Webkit.dylib (??? - ???) <B44B6722-7FD6-0D9B-1B95-C1BEA7007149> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Webkit.dylib
    0x8fe5c000 - 0x8fe8e9c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90005000 - 0x9000efff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9000f000 - 0x90045ff7  com.apple.AE (527.6 - 527.6) <77999151-94E3-37CD-A49E-7A9F9084F886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x90046000 - 0x900c2fff  libType1Scaler.dylib (??? - ???) <DFBB3B4F-31F4-3ED0-B57C-713493CA2756> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x900c3000 - 0x900c8ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x9012f000 - 0x90143ff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x90144000 - 0x90148ff7  com.apple.OpenDirectory (10.7 - 144) <A117580D-FD86-381E-82FD-B1A040045031> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90149000 - 0x90209fff  com.apple.CoreServices.OSServices (478.25 - 478.25) <13EB75E5-98E5-3C3D-A2D7-CD6CB292C227> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9020a000 - 0x9020cff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x9020d000 - 0x9024bfff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0AE59D4F-FFA7-3539-8B86-AD8993894AA0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9024c000 - 0x9024cff2  com.apple.CoreServices (53 - 53) <C513E133-B0E0-3C35-A7CB-DBC35A7EF571> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9024d000 - 0x90250ffd  libCoreVMClient.dylib (??? - ???) <1438A7D5-A622-3623-A49F-45F881B1D947> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x90251000 - 0x902a0ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <51981B76-9A78-39D7-8709-7686BD2057C8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x902a1000 - 0x905fdfff  com.apple.MediaToolbox (1.0 - 705.35) <425BD613-CB66-3BE1-8DDC-1B59561A1F5F> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x90722000 - 0x90b24ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x90b63000 - 0x90b6cff3  com.apple.CommonAuth (2.1 - 2.0) <94EA2555-212C-3704-8307-FCEE5D6D32C5> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90d51000 - 0x911a6fff  FaceCoreLight (1.4.2 - compatibility 1.0.0) <53AC5DCE-D04B-3DC3-808D-AA1CAD4D0924> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x911a8000 - 0x9120dff7  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <1C4B66EB-3186-31BE-B93F-878E49334C49> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9120e000 - 0x9122aff5  com.apple.GenerationalStorage (1.0 - 124) <0BC29510-6C26-3445-88B7-21502CAFF372> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9122b000 - 0x912b5ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <C8567435-9CD1-35EE-AE05-304D28858C42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x912b6000 - 0x912f2ffa  libGLImage.dylib (??? - ???) <7A150184-E3F7-3773-917A-A5E24B9241FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x9152c000 - 0x9157aff3  com.apple.ImageCaptureCore (3.0 - 3.0) <16B80ABD-DCDA-34AA-A539-F36A4D39CB03> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x9157b000 - 0x915afff3  libTrueTypeScaler.dylib (??? - ???) <FF162272-243C-321C-B152-AD81B3171C54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x915b0000 - 0x91644ff7  com.apple.LaunchServices (480.19 - 480.19) <A68C0688-4ED1-35F1-BF44-F5B1917084A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x91645000 - 0x920caffe  com.apple.AppKit (6.7 - 1138) <1CEDE402-32DD-3C10-B3B3-8C3DDBE8335D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x920cb000 - 0x920d3fff  com.apple.DiskArbitration (2.4 - 2.4) <E574D5E7-7297-33B5-8B91-1E6346D5F917> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920fe000 - 0x9212cffb  com.apple.DictionaryServices (1.2 - 158) <C614930F-520D-3F77-AD0D-0E16FBCB98CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9212d000 - 0x92146fff  libPng.dylib (??? - ???) <2C47E152-240A-36A7-87A8-3856EDFF2FE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x92147000 - 0x92149ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9214a000 - 0x9214dfff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9214e000 - 0x9214efff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <CB952B04-595A-332B-992B-7671815750FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x923f9000 - 0x923f9fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <881C1C85-2DEC-38DE-BC97-7804BC907282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92445000 - 0x924a5ffb  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <6026C895-3DC6-3785-A7BB-2F2B9E292D95> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x924a6000 - 0x9252dfff  com.apple.print.framework.PrintCore (7.0 - 366) <D037D344-7463-3620-AE8F-8D0D3EA5CE8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9257f000 - 0x92583fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x929ba000 - 0x929f6fff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <8CB51735-ABE4-37AD-9019-845BB768955F> /usr/lib/libcups.2.dylib
    0x929f7000 - 0x929f7ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x92a04000 - 0x92a44ff7  libauto.dylib (??? - ???) <36E7FE7F-27DF-3301-80AA-DD61FBF722F4> /usr/lib/libauto.dylib
    0x92a45000 - 0x92a48ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x92a79000 - 0x92bdaffb  com.apple.QuartzCore (1.7 - 269.0) <221FF6A0-9C2C-3977-BC2A-A84C392BA49B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92bdb000 - 0x92c50fff  com.apple.Metadata (10.7.0 - 627.9) <1EF7D615-3DF4-3F5D-88CE-6BDFA120FE32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x92c51000 - 0x92c5efff  libGL.dylib (??? - ???) <C1C549FC-FF7F-3012-9DF5-5255217B4AEA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92c5f000 - 0x92cebff7  com.apple.CoreText (4.0.0 - ???) <2ADB0C1E-FE27-371C-8EC3-69D5CFEA2BE7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x92d28000 - 0x92d33ffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x92d34000 - 0x92d3bfff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92d3c000 - 0x92f12fef  com.apple.CoreFoundation (6.7 - 635) <4EE0D62E-5342-3A9F-A740-DA1D5AEBB1B0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92f16000 - 0x93025ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <01987A45-9270-30FD-8A67-5E53DB637909> /usr/lib/libsqlite3.dylib
    0x93057000 - 0x930cfff2  com.apple.CorePDF (3.0 - 3.0) <A0EC8F60-A622-347E-979A-F71939C45E5F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x930df000 - 0x930dffff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <75E38B34-1DE2-337A-A09F-0F7E91C02ABB> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x930e2000 - 0x93353ffb  com.apple.CoreImage (7.77 - 1.0.1) <DF1D9EB7-5879-3EA2-8CF5-80004DAC18BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x933d3000 - 0x933d4fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x933e6000 - 0x933ebffd  libGFXShared.dylib (??? - ???) <7C55BE22-CDB5-3192-B7F0-96EA754A20AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x93502000 - 0x9357eff3  com.apple.PDFKit (2.6 - 2.6) <484AB8A4-E967-3B2F-BEFE-4B74F72B65A2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x9357f000 - 0x93972ff7  com.apple.VideoToolbox (1.0 - 705.35) <B0D04F08-D3EB-370A-A56F-8AF01116B0D0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x93973000 - 0x939a1fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <FA9B75F7-B989-3DD3-97FD-373EB95C5BA8> /usr/lib/libSystem.B.dylib
    0x939f4000 - 0x93ad7ff7  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <6E631200-1E22-37B9-85D1-EC40520891AB> /usr/lib/libcrypto.0.9.8.dylib
    0x93ad9000 - 0x93b02ffe  com.apple.opencl (1.50.62 - 1.50.62) <52059AB5-8E0D-356E-98AA-71A4777CBE57> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93b0e000 - 0x93ec6ffb  com.apple.SceneKit (2.0 - 124) <D1B359EA-7637-31D0-800E-8E816B1F4475> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x93fd9000 - 0x94004fff  com.apple.GSS (2.1 - 2.0) <129F4AB0-41AC-3713-A7BC-921769B0E12D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x94005000 - 0x94005ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x94006000 - 0x94033ff7  com.apple.securityinterface (5.0 - 55004) <93C0285A-A266-3F21-82C9-434CBD3FA712> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x94034000 - 0x940cfff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x940d0000 - 0x9419fffb  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <A482C10A-C474-39DC-AB3C-EADBCF3A433B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x942a5000 - 0x942afff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x942b0000 - 0x94561ff7  com.apple.security (7.0 - 55010) <28168576-1B8C-3FE8-9356-DE79390A480A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x945f1000 - 0x947a5ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6270318A-CA9A-376C-AD6D-64A9B4B4A26E> /usr/lib/libicucore.A.dylib
    0x94ad0000 - 0x94ad2ffb  libRadiance.dylib (??? - ???) <5112B7CE-BAAF-3E98-94E4-676BCB92867F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x94ad3000 - 0x94ad4ff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x94b01000 - 0x94b68fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x94b69000 - 0x94b6dffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94b6e000 - 0x94b71ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x94b72000 - 0x94b7dffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x94b7e000 - 0x94cd0ffb  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <5767C518-343D-36DB-8D59-C72986161AEC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94cd1000 - 0x94cfbff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x94cfc000 - 0x94d00ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x94d01000 - 0x94de9fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x94dea000 - 0x94e3bff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x94e3c000 - 0x9513fff7  com.apple.Foundation (6.7 - 833.1) <94BFFEDD-0676-368D-B4C6-8784E1DA4306> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95140000 - 0x95141ffd  libCVMSPluginSupport.dylib (??? - ???) <8057030D-B290-3A8B-9828-3A1BD123B124> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x95142000 - 0x95142fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9515b000 - 0x9517afff  com.apple.RemoteViewServices (1.0 - 1) <D9810485-6A62-3758-96F5-48950AF250F1> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9517b000 - 0x9517bfff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9518c000 - 0x9519fff9  com.apple.MultitouchSupport.framework (220.62 - 220.62) <5BD8730D-43A4-3040-9EA3-0BDA52A392A9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x951a0000 - 0x951fcff3  com.apple.Symbolication (1.2 - 83.1) <E651A2F1-CC13-3DDD-9B0A-09180014966B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x958b6000 - 0x958bcffb  com.apple.print.framework.Print (7.0 - 247) <1140BB03-0720-308F-8D92-F71B347D63D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x958bd000 - 0x958cbfff  com.apple.opengl (1.7.4 - 1.7.4) <C6DE3D3A-CC1F-3F55-B8DD-2637FA40058F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x958cc000 - 0x958fcff7  libsystem_info.dylib (??? - ???) <C385F5A9-458A-3B49-9CC7-EA81DC5F9141> /usr/lib/system/libsystem_info.dylib
    0x95906000 - 0x95b24ff7  com.apple.imageKit (2.1 - 1.0) <0B16E64D-597C-3ECE-8076-7991AF7D6820> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x96552000 - 0x96577ff9  libJPEG.dylib (??? - ???) <5872B388-D6CC-3DD4-A2F3-8BB464E83D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x96578000 - 0x966a1ff9  com.apple.CFNetwork (520.0.13 - 520.0.13) <B21DE9ED-1D99-39C0-9E24-77D2A48FBFEF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x966a2000 - 0x967b6ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2246) <AB6ABF7E-22FD-3EEF-A9A4-55EC16092D15> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
    0x967b7000 - 0x97507fe3  com.apple.QuickTimeComponents.component (7.7.1 - 2246) <AD39FCD8-72EB-32C4-9B3F-5776BD3ECA52> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x97550000 - 0x975cbffb  com.apple.ApplicationServices.ATS (5.0 - ???) <8DF22F1E-7600-3ADA-BFC1-F6FA79914171> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x975cc000 - 0x975cdfff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x97608000 - 0x97608fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97609000 - 0x9760dfff  libGIF.dylib (??? - ???) <F6094267-AB0E-38FC-8201-510AA4BDC974> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x9760e000 - 0x9762bff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x9762c000 - 0x97642ffe  libxpc.dylib (77.16.0 - compatibility 1.0.0) <2EAF3E13-19FA-3EF2-88D6-64ACBC3A6ADB> /usr/lib/system/libxpc.dylib
    0x97643000 - 0x97ca865b  com.apple.CoreGraphics (1.600.0 - ???) <DD3B7ADA-0F19-371E-BB87-F3C08464134A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x980b0000 - 0x980c0fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x980c1000 - 0x98197ff6  com.apple.QuickLookUIFramework (3.0 - 489.1) <DC6303F6-F343-37C5-AE54-F5FD606FE78C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x98198000 - 0x9826eff3  com.apple.avfoundation (2.0 - 180.23) <428C1F5D-B786-3392-ADF4-43572D1722DE> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x982b3000 - 0x98303ff9  com.apple.QuickLookFramework (3.0 - 489.1) <46E053F5-E7CC-3358-93AF-635837E4ECCA> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x98304000 - 0x9830bfff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <B3B3875D-311D-31A7-A09F-D1BC56795E00> /usr/lib/system/libnotify.dylib
    0x98334000 - 0x98334fff  com.apple.vecLib (3.7 - vecLib 3.7) <A01CD788-26FB-320F-8617-5A7DF0F9031E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98413000 - 0x9841bff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9841c000 - 0x9841dfff  com.apple.TrustEvaluationAgent (2.0 - 1) <EABDA7EE-A98F-35B8-9E3E-7075BA651C68> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x985b5000 - 0x985ddff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x985de000 - 0x985dfff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x985e0000 - 0x985e8ffb  com.apple.DisplayServicesFW (2.5.0 - 302.1.2) <AD856B0D-3602-3C37-8B64-C6BB53A6F248> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x98626000 - 0x9865cfff  com.apple.DebugSymbols (2.1 - 85) <0F996A4A-16A7-3C90-8037-0E2958D1FB16> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9865d000 - 0x98668fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x98682000 - 0x98690fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x986b2000 - 0x98702fff  libFontRegistry.dylib (??? - ???) <BC35B8F5-7CCA-3A04-A278-FA3306B2C4F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x98703000 - 0x9870bff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x9874d000 - 0x987aaffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x987ab000 - 0x98a30fe3  com.apple.QuickTime (7.7.1 - 2246) <56DF434A-D929-350C-86D5-684089D0EDFB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98a31000 - 0x98a53ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x98a54000 - 0x98a5bff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x98acb000 - 0x99146ff9  com.apple.CoreAUC (6.11.03 - 6.11.03) <E8553EC9-6A7E-339E-B346-A5853649D3A0> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x991ea000 - 0x991eeff3  libsystem_network.dylib (??? - ???) <E1455F3E-549B-3D50-A38B-17B394F3C7F6> /usr/lib/system/libsystem_network.dylib
    0x99200000 - 0x9920bff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <11726E50-E6FC-3AB0-8750-DDDCCF2B8534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x99241000 - 0x992a5fff  com.apple.framework.IOKit (2.0 - ???) <B5888D02-8C36-3404-A37E-7457D950D629> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x992a6000 - 0x99371fff  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <44AA09FD-3A8F-3DCF-AD98-BC9071CA7376> /usr/lib/system/libsystem_c.dylib
    0x99372000 - 0x99394ffe  com.apple.framework.familycontrols (3.0 - 300) <AE51B604-D32D-32F7-AEDC-B1C4EB7191C6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x99395000 - 0x99403fff  com.apple.Heimdal (2.1 - 2.0) <5BA5BFA4-0B05-3B00-AF06-C3D0D60F36BC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9946d000 - 0x9946dfff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x9946e000 - 0x99491fff  com.apple.CoreVideo (1.7 - 70.0) <0CBE6F3B-34C7-3C6B-9BB1-826F9905ECC1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x995c3000 - 0x995d3ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x995ea000 - 0x99610ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x99611000 - 0x9983affb  com.apple.QuartzComposer (5.0 - 232) <B25A191A-B96D-3BB0-B7D5-FDE4A97DFD06> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x9983b000 - 0x99842ffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99843000 - 0x99d1fff6  libBLAS.dylib (??? - ???) <327C1517-2B63-3D8C-8D8E-CB4EBA2A9C36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x99d20000 - 0x99d78fff  com.apple.HIServices (1.9 - ???) <058E00E0-F1B4-395F-813E-C49C0C5F3BA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x99d9e000 - 0x99ebefec  com.apple.vImage (5.0 - 5.0) <173F6343-07EE-39F7-A159-DD3837E473DE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x99ebf000 - 0x9a021fff  com.apple.QTKit (7.7.1 - 2246) <3BFE9BE6-4DDD-3D21-9695-0ECE773128E6> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9a022000 - 0x9a23cff7  com.apple.JavaScriptCore (7534 - 7534.48) <430C2E37-5E97-3C16-9BC9-D8478F7A6CF6> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9a23d000 - 0x9a240ffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9a5c2000 - 0x9a5d7ff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9a5d8000 - 0x9a5dbff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x9a607000 - 0x9a625ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x9a626000 - 0x9a71eff7  libFontParser.dylib (??? - ???) <C428D41A-8635-3423-A2F0-8BA9819F212B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x9a71f000 - 0x9a8b8ff7  com.apple.CoreData (103 - 358.4) <EB07F3A5-6301-3DA4-96FC-F8381D148C69> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9a8b9000 - 0x9a90aff3  com.apple.CoreMediaIO (201.0 - 3148) <C37D84D8-69B2-3375-B988-4EEB2B1A3DF4> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9a90b000 - 0x9a90cff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x9a94a000 - 0x9a9b4ff3  com.apple.CoreSymbolication (2.1 - 66) <B11C9057-1611-36A5-81F6-2C97A7047321> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x9a9b5000 - 0x9a9cffff  com.apple.Kerberos (1.0 - 1) <25E5A286-876D-3A8E-A12F-52D184559E8C> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9a9d0000 - 0x9ad0fff3  com.apple.HIToolbox (1.7 - ???) <A9583F07-218D-35CD-B29C-C65E6D008836> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x9ad10000 - 0x9ad60ff4  libTIFF.dylib (??? - ???) <25796A90-ABD2-3A3A-800C-1056D343A71F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x9ad8a000 - 0x9ad8bff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x9adc0000 - 0x9adc6ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x9adc7000 - 0x9add5fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <1883C8E2-D180-3EA0-8BEF-325F2FEDACD1> /usr/lib/system/libdispatch.dylib
    0x9b3d3000 - 0x9b46aff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9b46b000 - 0x9b4f8fe7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <A44ADE1B-AB2C-3585-8C9D-D85B526E66C0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x9b65a000 - 0x9b69dffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x9b69e000 - 0x9b6a6ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9b6e6000 - 0x9b6fbfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9b6fc000 - 0x9b719fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x9b71a000 - 0x9b7befff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9b7bf000 - 0x9b8d0ff7  libJP2.dylib (??? - ???) <E938C201-C508-3E3D-B9A9-81FE52349E1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x9b8d3000 - 0x9b8d4ffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x9b8d5000 - 0x9b92eff3  com.apple.coreui (0.3 - 162) <BD3FBC84-234A-38E0-AA29-DE0424D3FD16> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9b92f000 - 0x9b96dfff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x9b96e000 - 0x9b9b5fff  com.apple.SystemConfiguration (1.11 - 1.11) <A7769080-2A4F-36AF-9484-08A936690307> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x9ba98000 - 0x9baafff8  com.apple.CoreMediaAuthoring (2.0 - 889) <49B55753-BD7E-3889-BA60-15294DA49CB7> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x9bab4000 - 0x9bbbfffb  com.apple.DesktopServices (1.6.0 - 1.6.0) <66E2BD3A-958A-3F46-8DA0-C0F2358013B0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x9bc63000 - 0x9bca4ff7  com.apple.CoreMedia (1.0 - 705.35) <8A487271-FBEA-357A-8887-27BAA355314C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9bca5000 - 0x9bca8ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <B9344DE6-B84D-352C-95AD-EF73A68B8A10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9bcd9000 - 0x9bd3bffb  com.apple.datadetectorscore (3.0 - 179.3) <18117942-9D6F-3283-B8B0-03C7550CA2EB> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x9bd3c000 - 0x9bdfcff3  com.apple.ColorSync (4.7.0 - 4.7.0) <50767823-56BA-373D-BC5A-37B17B659838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9be26000 - 0x9be37fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9be38000 - 0x9be9aff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9be9d000 - 0x9c19dfff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <E098AC3A-E795-3C28-BA92-EED51C461A6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9c1b3000 - 0x9c289a5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x9c28d000 - 0x9c37dff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9c37e000 - 0x9c3a6ff0  com.apple.CoreServicesInternal (113.7 - 113.7) <F5724FAC-8BB8-3F0F-B8BC-36F2CA75A23D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x9c5c6000 - 0x9c60fff7  libGLU.dylib (??? - ???) <3524C956-C8B2-3E8B-805D-9E25E5481A58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9c616000 - 0x9c617fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0xba900000 - 0xba91bffd  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <5635DF40-8D8E-3B8C-B075-7B3FC0F184A4> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ff6  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <17226124-8E8A-34EB-A2C4-D4A0469CF45B> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 1887
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=195.3M resident=118.1M(60%) swapped_out_or_unallocated=77.2M(40%)
    Writable regions: Total=110.1M written=28.5M(26%) resident=33.5M(30%) swapped_out=0K(0%) unallocated=76.6M(70%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                33.0M
    CG backing stores                  224K
    CG image                            12K
    CG raster data                      64K
    CG shared images                  3416K
    CoreGraphics                          8K
    CoreServices                      1656K
    MALLOC                            31.9M
    MALLOC guard page                    32K
    Memory tag=240                    14.3M
    Memory tag=242                      12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    SQLite page cache                  192K
    Stack                              67.6M
    VM_ALLOCATE                        53.7M
    __CI_BITMAP                          80K
    __DATA                            11.6M
    __DATA/__OBJC                      224K
    __IMAGE                            1256K
    __IMPORT                            68K
    __LINKEDIT                        43.1M
    __OBJC                            2624K
    __OBJC/__DATA                        76K
    __PAGEZERO                            4K
    __TEXT                            152.2M
    __UNICODE                          544K
    mapped file                      110.1M
    shared memory                      312K
    shared pmap                        6728K
    ===========                      =======
    TOTAL                            534.7M
    Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.42f4
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.100.98.75.6)
    Bluetooth: Version 2.5.0f17, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS21N
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8217, 0x06110000 / 3

    Hi Chris,
        He did indeed try the release build, and here is the stack dump. I hope this helps!
    Process:        YNAB 3 [5177]
    Path:            /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
    Identifier:      com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1
    Version:        3.5.3.4 (???)
    Code Type:      X86 (Native)
    Parent Process:  launchd [131]
    Date/Time:      2011-09-25 18:25:54.606 -0600
    OS Version:      Mac OS X 10.7.1 (11B26)
    Report Version:  9
    Interval Since Last Report:          206421 sec
    Crashes Since Last Report:          1
    Per-App Interval Since Last Report:  92 sec
    Per-App Crashes Since Last Report:  1
    Anonymous UUID:                      F1E1AA94-7BE2-4C59-BC1D-FFAC570B2F5F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO            0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
        __TEXT                0000000000001000-0000000000007000 [  24K] r-x/rwx SM=COW  /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
    Application Specific Information:
    objc[5177]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0  WebKit.dylib                      0x0cced27b WebKitGetAPI + 639273
    1  WebKit.dylib                      0x0ccdac6f WebKitGetAPI + 563997
    2  WebKit.dylib                      0x0ccda64c WebKitGetAPI + 562426
    3  WebKit.dylib                      0x0ccf7449 WebKitGetAPI + 680695
    4  WebKit.dylib                      0x0ccf8849 WebKitGetAPI + 685815
    5  WebKit.dylib                      0x0d0412da WebKitGetAPI + 4129160
    6  WebKit.dylib                      0x0d03ef99 WebKitGetAPI + 4120135
    7  WebKit.dylib                      0x0cc51111 0xcc4b000 + 24849
    8  com.adobe.AIR                    0x02f305b6 FREGetObjectAsInt32 + 17116
    9  com.adobe.AIR                    0x02f306b0 FREGetObjectAsInt32 + 17366
    10  com.adobe.AIR                    0x027bab72 0x2789000 + 203634
    11  com.adobe.AIR                    0x027ac188 0x2789000 + 143752
    12  com.adobe.AIR                    0x027ac9b5 0x2789000 + 145845
    13  com.adobe.AIR                    0x0279d272 0x2789000 + 82546
    14  com.apple.Foundation              0x9ba5151d __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49
    15  com.apple.CoreFoundation          0x90f71843 ___CFXNotificationPost_block_invoke_1 + 275
    16  com.apple.CoreFoundation          0x90f3c658 _CFXNotificationPost + 2776
    17  com.apple.Foundation              0x9ba3c70a -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    18  com.apple.Foundation              0x9ba5199e -[NSNotificationCenter postNotificationName:object:] + 55
    19  com.apple.AppKit                  0x9a8be6d7 -[NSApplication terminate:] + 2217
    20  com.apple.Foundation              0x9ba45ebe __NSFireDelayedPerform + 615
    21  com.apple.CoreFoundation          0x90f49256 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    22  com.apple.CoreFoundation          0x90f48be7 __CFRunLoopDoTimer + 743
    23  com.apple.CoreFoundation          0x90f27ce0 __CFRunLoopRun + 1888
    24  com.apple.CoreFoundation          0x90f271ec CFRunLoopRunSpecific + 332
    25  com.apple.CoreFoundation          0x90f27098 CFRunLoopRunInMode + 120
    26  com.apple.HIToolbox              0x943ff487 RunCurrentEventLoopInMode + 318
    27  com.apple.HIToolbox              0x94406cee ReceiveNextEventCommon + 168
    28  com.apple.HIToolbox              0x94406c32 BlockUntilNextEventMatchingListInMode + 88
    29  com.apple.AppKit                  0x9a8b78ec _DPSNextEvent + 678
    30  com.apple.AppKit                  0x9a8b7159 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    31  com.apple.AppKit                  0x9a8b34cb -[NSApplication run] + 904
    32  com.adobe.AIR                    0x0279176a 0x2789000 + 34666
    33  com.adobe.AIR                    0x02791ab0 0x2789000 + 35504
    34  com.apple.CoreFoundation          0x90f86901 -[NSObject performSelector:withObject:] + 65
    35  com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1    0x00002ff7 start + 4363
    36  com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1    0x00001fe7 start + 251
    37  com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1    0x00001f15 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0  libsystem_kernel.dylib            0x917b590a kevent + 10
    1  libdispatch.dylib                0x94eddccc _dispatch_mgr_invoke + 969
    2  libdispatch.dylib                0x94edc71b _dispatch_mgr_thread + 53
    Thread 2:
    0  libsystem_kernel.dylib            0x917b483e __psynch_cvwait + 10
    1  libsystem_c.dylib                0x9479de21 _pthread_cond_wait + 827
    2  libsystem_c.dylib                0x9474e42c pthread_cond_wait$UNIX2003 + 71
    3  com.adobe.AIR                    0x02cfee6f 0x2789000 + 5725807
    4  com.adobe.AIR                    0x02b3d770 0x2789000 + 3884912
    5  com.adobe.AIR                    0x02cfef3f 0x2789000 + 5726015
    6  com.adobe.AIR                    0x02cfefb9 0x2789000 + 5726137
    7  com.adobe.AIR                    0x02cff054 0x2789000 + 5726292
    8  libsystem_c.dylib                0x94799ed9 _pthread_start + 335
    9  libsystem_c.dylib                0x9479d6de thread_start + 34
    Thread 3:
    0  libsystem_kernel.dylib            0x917b483e __psynch_cvwait + 10
    1  libsystem_c.dylib                0x9479de21 _pthread_cond_wait + 827
    2  libsystem_c.dylib                0x9474e42c pthread_cond_wait$UNIX2003 + 71
    3  com.adobe.AIR                    0x02cfee6f 0x2789000 + 5725807
    4  com.adobe.AIR                    0x02b3d770 0x2789000 + 3884912
    5  com.adobe.AIR                    0x02cfef3f 0x2789000 + 5726015
    6  com.adobe.AIR                    0x02cfefb9 0x2789000 + 5726137
    7  com.adobe.AIR                    0x02cff054 0x2789000 + 5726292
    8  libsystem_c.dylib                0x94799ed9 _pthread_start + 335
    9  libsystem_c.dylib                0x9479d6de thread_start + 34
    Thread 4:: com.apple.NSURLConnectionLoader
    0  libsystem_kernel.dylib            0x917b2c22 mach_msg_trap + 10
    1  libsystem_kernel.dylib            0x917b21f6 mach_msg + 70
    2  com.apple.CoreFoundation          0x90f1e9ea __CFRunLoopServiceMachPort + 170
    3  com.apple.CoreFoundation          0x90f27b14 __CFRunLoopRun + 1428
    4  com.apple.CoreFoundation          0x90f271ec CFRunLoopRunSpecific + 332
    5  com.apple.CoreFoundation          0x90f27098 CFRunLoopRunInMode + 120
    6  com.apple.Foundation              0x9baa588c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7  com.apple.Foundation              0x9ba995ed -[NSThread main] + 45
    8  com.apple.Foundation              0x9ba9959d __NSThread__main__ + 1582
    9  libsystem_c.dylib                0x94799ed9 _pthread_start + 335
    10  libsystem_c.dylib                0x9479d6de thread_start + 34
    Thread 5:: com.apple.CFSocket.private
    0  libsystem_kernel.dylib            0x917b4b42 __select + 10
    1  com.apple.CoreFoundation          0x90f759e5 __CFSocketManager + 1557
    2  libsystem_c.dylib                0x94799ed9 _pthread_start + 335
    3  libsystem_c.dylib                0x9479d6de thread_start + 34
    Thread 6:
    0  libsystem_kernel.dylib            0x917b483e __psynch_cvwait + 10
    1  libsystem_c.dylib                0x9479de21 _pthread_cond_wait + 827
    2  libsystem_c.dylib                0x9474e42c pthread_cond_wait$UNIX2003 + 71
    3  WebKit.dylib                      0x0cda73d3 WebKitGetAPI + 1401473
    4  WebKit.dylib                      0x0cda7441 WebKitGetAPI + 1401583
    5  libsystem_c.dylib                0x94799ed9 _pthread_start + 335
    6  libsystem_c.dylib                0x9479d6de thread_start + 34
    Thread 7:
    0  libsystem_kernel.dylib            0x917b502e __workq_kernreturn + 10
    1  libsystem_c.dylib                0x9479bccf _pthread_wqthread + 773
    2  libsystem_c.dylib                0x9479d6fe start_wqthread + 30
    Thread 8:
    0  libsystem_kernel.dylib            0x917b502e __workq_kernreturn + 10
    1  libsystem_c.dylib                0x9479bccf _pthread_wqthread + 773
    2  libsystem_c.dylib                0x9479d6fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0cced181  ecx: 0x07ab52f8  edx: 0xbfffdecc
      edi: 0x0d352000  esi: 0x0d355f00  ebp: 0xbfffdea8  esp: 0xbfffde30
      ss: 0x00000023  efl: 0x00010246  eip: 0x0cced27b  cs: 0x0000001b
      ds: 0x00000023  es: 0x00000023  fs: 0x00000000  gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x6ff7 +com.youneedabudget.YNAB3.Live.9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1 (3.5.3.4 - ???) <72E5E138-08AE-26DD-C1B8-F70175D06CC3> /Applications/YNAB 3/YNAB 3.app/Contents/MacOS/YNAB 3
      0xf8000 -    0xfbfef  com.apple.LiveType.component (2.1.3 - 2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
      0x500000 -  0x5adff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x2789000 -  0x389cfd3 +com.adobe.AIR (??? - 3.0.0.3880) <FEA7C6C6-A819-1E51-0DE9-C943D630E947> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x3c13000 -  0x3c78fde  com.apple.LiveType.framework (2.1.3 - 2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x3c98000 -  0x3cf0fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3d14000 -  0x3d17ff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x4e24000 -  0x4e5dff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2246) <539384F7-C119-3CC9-B74B-4D958836A955> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x4e68000 -  0x4e72fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComponents
    0x4e7d000 -  0x4ea5fff  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2246) <E3A2155F-CAAC-31DB-8D8F-80A32D86E56B> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/QuickTimeIIDCDi gitizer
    0x4ead000 -  0x4ecaff7 +com.google.talk.camera (2.3.2.3851 - 2.3.2.3851) <A1FDFE63-863F-7208-4CD0-B91566803D82> /Library/QuickTime/Google Camera Adapter 0.component/Contents/MacOS/Google Camera Adapter 0
    0x4ede000 -  0x4efbff7 +com.google.talk.camera (2.3.2.3851 - 2.3.2.3851) <8479D04F-4B7D-52B6-45BB-0D10378C39F8> /Library/QuickTime/Google Camera Adapter 1.component/Contents/MacOS/Google Camera Adapter 1
    0x4f0f000 -  0x4f5dff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.0 - 2.7.0) <B6ABEFE8-826B-3784-B274-0CC1FBA9B864> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBV DCDigitizer
    0x4f67000 -  0x4f6bffb  com.apple.audio.AudioIPCPlugIn (1.2.0 - 1.2.0) <8A4CC918-D47D-3F33-8420-0698071A5944> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0x4f70000 -  0x4f76ffb  com.apple.audio.AppleHDAHALPlugIn (2.1.1 - 2.1.1f12) <2AD22146-D23E-3E5B-AFC9-BC8211FED107> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x4f7c000 -  0x4fa9ff8  GLRendererFloat (??? - ???) <BBFAA220-4A07-3CDC-9A93-DF6A2220AE01> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x712f000 -  0x729cff0  GLEngine (??? - ???) <3C6D5F72-9CDA-37E2-B085-7F38C99FE8C5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x72d0000 -  0x73c7ffb  libGLProgrammability.dylib (??? - ???) <560A7F12-1AA6-35E1-A922-309016BF6D3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x7426000 -  0x7444ff7 +com.numark.ns6.hal (??? - 2.1.0) <C4B53351-2CB6-BA09-D19B-350C903D86A7> /Library/Audio/Plug-Ins/HAL/NumarkNS6AudioHAL.plugin/Contents/MacOS/NumarkNS6AudioHAL
    0x748a000 -  0x74a7ff3 +com.numark.ns7.hal (??? - 2.0.2) <A73C3AC5-4A1B-BC91-7FCA-02E231FE7E2D> /Library/Audio/Plug-Ins/HAL/NumarkNS7AudioHAL.plugin/Contents/MacOS/NumarkNS7AudioHAL
    0x74b5000 -  0x74d2ffb +com.numark.V7.hal (??? - 2.0.3) <2582418D-CE06-69BF-B706-EE402BE8AB46> /Library/Audio/Plug-Ins/HAL/NumarkV7AudioHAL.plugin/Contents/MacOS/NumarkV7AudioHAL
    0x74e0000 -  0x74fdffb +com.ploytec.xonedx.hal (??? - 2.0.2) <09D53E8E-2D43-1DAB-A525-A1F3E0EE12F3> /Library/Audio/Plug-Ins/HAL/XONE_DX.plugin/Contents/MacOS/XONE_DX
    0x7982000 -  0x7986ffb  libFontRegistryUI.dylib (??? - ???) <E986346C-8132-33B6-8525-AA2A3233F99C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0xcc4b000 -  0xd24cfe7 +WebKit.dylib (??? - ???) <64BDD3EA-DEE9-DFB5-AC33-70EB8F18C7D2> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
    0x8f0c3000 - 0x8f7d7ffb  com.apple.GeForceGLDriver (7.4.10 - 7.0.4) <30761571-F6AC-3270-B854-BC7D027ED859> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x8fe10000 - 0x8fe429c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x9004d000 - 0x9016dfec  com.apple.vImage (5.0 - 5.0) <173F6343-07EE-39F7-A159-DD3837E473DE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9016e000 - 0x90188fff  com.apple.Kerberos (1.0 - 1) <25E5A286-876D-3A8E-A12F-52D184559E8C> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90189000 - 0x90ed9fe3  com.apple.QuickTimeComponents.component (7.7.1 - 2246) <AD39FCD8-72EB-32C4-9B3F-5776BD3ECA52> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x90eda000 - 0x90ee2fff  com.apple.DiskArbitration (2.4 - 2.4) <E574D5E7-7297-33B5-8B91-1E6346D5F917> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ee3000 - 0x90eebff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x90eec000 - 0x910c2fef  com.apple.CoreFoundation (6.7 - 635) <4EE0D62E-5342-3A9F-A740-DA1D5AEBB1B0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91105000 - 0x91141fff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <8CB51735-ABE4-37AD-9019-845BB768955F> /usr/lib/libcups.2.dylib
    0x91142000 - 0x9115eff5  com.apple.GenerationalStorage (1.0 - 124) <0BC29510-6C26-3445-88B7-21502CAFF372> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9115f000 - 0x91172ff9  com.apple.MultitouchSupport.framework (220.62 - 220.62) <5BD8730D-43A4-3040-9EA3-0BDA52A392A9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x91173000 - 0x91174fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x91183000 - 0x91183ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x91184000 - 0x9118cff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9120a000 - 0x91227ff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x9145e000 - 0x91465ffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91466000 - 0x91473fff  libGL.dylib (??? - ???) <C1C549FC-FF7F-3012-9DF5-5255217B4AEA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91474000 - 0x91564ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x915b7000 - 0x91619ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9161a000 - 0x9161dffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x91706000 - 0x91708ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9172a000 - 0x91743fff  libPng.dylib (??? - ???) <2C47E152-240A-36A7-87A8-3856EDFF2FE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x91744000 - 0x91785ff7  com.apple.CoreMedia (1.0 - 705.35) <8A487271-FBEA-357A-8887-27BAA355314C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91786000 - 0x9179bff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9179c000 - 0x917baff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x917bb000 - 0x917c2fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <B3B3875D-311D-31A7-A09F-D1BC56795E00> /usr/lib/system/libnotify.dylib
    0x917c3000 - 0x917f1fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <FA9B75F7-B989-3DD3-97FD-373EB95C5BA8> /usr/lib/libSystem.B.dylib
    0x9183d000 - 0x919d6ff7  com.apple.CoreData (103 - 358.4) <EB07F3A5-6301-3DA4-96FC-F8381D148C69> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x919d7000 - 0x91ae2ffb  com.apple.DesktopServices (1.6.0 - 1.6.0) <66E2BD3A-958A-3F46-8DA0-C0F2358013B0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x91ae3000 - 0x91b4dff3  com.apple.CoreSymbolication (2.1 - 66) <B11C9057-1611-36A5-81F6-2C97A7047321> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x91b4e000 - 0x91b64ffe  libxpc.dylib (77.16.0 - compatibility 1.0.0) <2EAF3E13-19FA-3EF2-88D6-64ACBC3A6ADB> /usr/lib/system/libxpc.dylib
    0x91b65000 - 0x91f1dffb  com.apple.SceneKit (2.0 - 124) <D1B359EA-7637-31D0-800E-8E816B1F4475> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x925b9000 - 0x925baff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x925bb000 - 0x9276fff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6270318A-CA9A-376C-AD6D-64A9B4B4A26E> /usr/lib/libicucore.A.dylib
    0x927ac000 - 0x92baeff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x92bfc000 - 0x92bffffd  libCoreVMClient.dylib (??? - ???) <1438A7D5-A622-3623-A49F-45F881B1D947> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x92c37000 - 0x92c99ffb  com.apple.datadetectorscore (3.0 - 179.3) <18117942-9D6F-3283-B8B0-03C7550CA2EB> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x92db2000 - 0x92dc0fff  com.apple.opengl (1.7.4 - 1.7.4) <C6DE3D3A-CC1F-3F55-B8DD-2637FA40058F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92dc1000 - 0x92e97a5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x92e98000 - 0x931f4fff  com.apple.MediaToolbox (1.0 - 705.35) <425BD613-CB66-3BE1-8DDC-1B59561A1F5F> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x931f5000 - 0x931f6ff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x931f7000 - 0x934a8ff7  com.apple.security (7.0 - 55010) <28168576-1B8C-3FE8-9356-DE79390A480A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x934c8000 - 0x934fbfef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x9408f000 - 0x94172ff7  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <6E631200-1E22-37B9-85D1-EC40520891AB> /usr/lib/libcrypto.0.9.8.dylib
    0x94173000 - 0x94198ff9  libJPEG.dylib (??? - ???) <5872B388-D6CC-3DD4-A2F3-8BB464E83D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x941b3000 - 0x941d2fff  com.apple.RemoteViewServices (1.0 - 1) <D9810485-6A62-3758-96F5-48950AF250F1> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x941d3000 - 0x942fcff9  com.apple.CFNetwork (520.0.13 - 520.0.13) <B21DE9ED-1D99-39C0-9E24-77D2A48FBFEF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x943fd000 - 0x9473cff3  com.apple.HIToolbox (1.7 - ???) <A9583F07-218D-35CD-B29C-C65E6D008836> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x9473d000 - 0x94808fff  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <44AA09FD-3A8F-3DCF-AD98-BC9071CA7376> /usr/lib/system/libsystem_c.dylib
    0x94809000 - 0x94826fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x94827000 - 0x94828fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9483d000 - 0x9483fffb  libRadiance.dylib (??? - ???) <5112B7CE-BAAF-3E98-94E4-676BCB92867F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x94840000 - 0x94928fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x94a54000 - 0x94b68ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2246) <AB6ABF7E-22FD-3EEF-A9A4-55EC16092D15> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
    0x94bce000 - 0x94bf8ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x94bf9000 - 0x94c21ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x94c22000 - 0x94cf1ffb  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <A482C10A-C474-39DC-AB3C-EADBCF3A433B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x94cf2000 - 0x94d67fff  com.apple.Metadata (10.7.0 - 627.9) <1EF7D615-3DF4-3F5D-88CE-6BDFA120FE32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x94ed4000 - 0x94edaffb  com.apple.print.framework.Print (7.0 - 247) <1140BB03-0720-308F-8D92-F71B347D63D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x94edb000 - 0x94ee9fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <1883C8E2-D180-3EA0-8BEF-325F2FEDACD1> /usr/lib/system/libdispatch.dylib
    0x94eec000 - 0x94f33fff  com.apple.SystemConfiguration (1.11 - 1.11) <A7769080-2A4F-36AF-9484-08A936690307> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x94f34000 - 0x94fafffb  com.apple.ApplicationServices.ATS (5.0 - ???) <8DF22F1E-7600-3ADA-BFC1-F6FA79914171> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x94fc5000 - 0x94fcdff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x94fdf000 - 0x95028ff7  libGLU.dylib (??? - ???) <3524C956-C8B2-3E8B-805D-9E25E5481A58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95035000 - 0x950a3fff  com.apple.Heimdal (2.1 - 2.0) <5BA5BFA4-0B05-3B00-AF06-C3D0D60F36BC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x950a4000 - 0x950aeff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x950af000 - 0x950dafff  com.apple.GSS (2.1 - 2.0) <129F4AB0-41AC-3713-A7BC-921769B0E12D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x950de000 - 0x955baff6  libBLAS.dylib (??? - ???) <327C1517-2B63-3D8C-8D8E-CB4EBA2A9C36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x955bc000 - 0x955c7ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x955c8000 - 0x955dcff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x955e3000 - 0x955e5ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x95739000 - 0x95779ff7  libauto.dylib (??? - ???) <36E7FE7F-27DF-3301-80AA-DD61FBF722F4> /usr/lib/libauto.dylib
    0x9577a000 - 0x95815ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x95816000 - 0x958a3fe7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <A44ADE1B-AB2C-3585-8C9D-D85B526E66C0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x95c70000 - 0x95c7efff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x95cb4000 - 0x95d58fff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x95ec4000 - 0x95ecaffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x95ecb000 - 0x95ed0ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x95ed1000 - 0x95ed8fff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95ed9000 - 0x95fafff3  com.apple.avfoundation (2.0 - 180.23) <428C1F5D-B786-3392-ADF4-43572D1722DE> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x95fb0000 - 0x95fb0fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <75E38B34-1DE2-337A-A09F-0F7E91C02ABB> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95fb1000 - 0x95fb5fff  libGIF.dylib (??? - ???) <F6094267-AB0E-38FC-8201-510AA4BDC974> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x95fb6000 - 0x95fbdff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x95fbe000 - 0x95fc2ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95fe9000 - 0x96664ff9  com.apple.CoreAUC (6.11.03 - 6.11.03) <E8553EC9-6A7E-339E-B346-A5853649D3A0> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96665000 - 0x9666eff3  com.apple.CommonAuth (2.1 - 2.0) <94EA2555-212C-3704-8307-FCEE5D6D32C5> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x966bc000 - 0x966c0ff3  libsystem_network.dylib (??? - ???) <E1455F3E-549B-3D50-A38B-17B394F3C7F6> /usr/lib/system/libsystem_network.dylib
    0x966c1000 - 0x967d0ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <01987A45-9270-30FD-8A67-5E53DB637909> /usr/lib/libsqlite3.dylib
    0x96cd0000 - 0x96f41ffb  com.apple.CoreImage (7.77 - 1.0.1) <DF1D9EB7-5879-3EA2-8CF5-80004DAC18BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x96f42000 - 0x97397fff  FaceCoreLight (1.4.2 - compatibility 1.0.0) <53AC5DCE-D04B-3DC3-808D-AA1CAD4D0924> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x97398000 - 0x9739bff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x97532000 - 0x977b7fe3  com.apple.QuickTime (7.7.1 - 2246) <56DF434A-D929-350C-86D5-684089D0EDFB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x977b8000 - 0x977b9ffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x977ba000 - 0x977e3ffe  com.apple.shortcut (2.0 - 2.0) <7F289D05-DDEC-3993-9F86-0DB896E1E686> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x977e4000 - 0x977e5fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x977f0000 - 0x97be3ff7  com.apple.VideoToolbox (1.0 - 705.35) <B0D04F08-D3EB-370A-A56F-8AF01116B0D0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x97be4000 - 0x97c06ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x97c07000 - 0x97c0bffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x97c79000 - 0x97d4fff6  com.apple.QuickLookUIFramework (3.0 - 489.1) <DC6303F6-F343-37C5-AE54-F5FD606FE78C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x97e0f000 - 0x97e5effb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <51981B76-9A78-39D7-8709-7686BD2057C8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97e5f000 - 0x97e82fff  com.apple.CoreVideo (1.7 - 70.0) <0CBE6F3B-34C7-3C6B-9BB1-826F9905ECC1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97e83000 - 0x97ed4ff3  com.apple.CoreMediaIO (201.0 - 3148) <C37D84D8-69B2-3375-B988-4EEB2B1A3DF4> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x97ed5000 - 0x97f25fff  libFontRegistry.dylib (??? - ???) <BC35B8F5-7CCA-3A04-A278-FA3306B2C4F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x97f75000 - 0x97fd9fff  com.apple.framework.IOKit (2.0 - ???) <B5888D02-8C36-3404-A37E-7457D950D629> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x982af000 - 0x982e5ff7  com.apple.AE (527.6 - 527.6) <77999151-94E3-37CD-A49E-7A9F9084F886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x982e6000 - 0x98322ffa  libGLImage.dylib (??? - ???) <7A150184-E3F7-3773-917A-A5E24B9241FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x98332000 - 0x9854cff7  com.apple.JavaScriptCore (7534 - 7534.48) <430C2E37-5E97-3C16-9BC9-D8478F7A6CF6> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98559000 - 0x9855aff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x9855b000 - 0x9856bff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x9856c000 - 0x98581fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x98582000 - 0x9858dff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <11726E50-E6FC-3AB0-8750-DDDCCF2B8534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x985a9000 - 0x985acffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x985bf000 - 0x98618ff3  com.apple.coreui (0.3 - 162) <BD3FBC84-234A-38E0-AA29-DE0424D3FD16> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98619000 - 0x98619fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9861a000 - 0x98676ff3  com.apple.Symbolication (1.2 - 83.1) <E651A2F1-CC13-3DDD-9B0A-09180014966B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x98677000 - 0x98703ff7  com.apple.CoreText (4.0.0 - ???) <2ADB0C1E-FE27-371C-8EC3-69D5CFEA2BE7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x98704000 - 0x98734ff7  libsystem_info.dylib (??? - ???) <C385F5A9-458A-3B49-9CC7-EA81DC5F9141> /usr/lib/system/libsystem_info.dylib
    0x987b6000 - 0x987b6ff2  com.apple.CoreServices (53 - 53) <C513E133-B0E0-3C35-A7CB-DBC35A7EF571> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9881d000 - 0x9882efff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9882f000 - 0x9882ffff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <CB952B04-595A-332B-992B-7671815750FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x9889c000 - 0x98918ff3  com.apple.PDFKit (2.6 - 2.6) <484AB8A4-E967-3B2F-BEFE-4B74F72B65A2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x9893e000 - 0x989a5fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x989a6000 - 0x989d3ff7  com.apple.securityinterface (5.0 - 55004) <93C0285A-A266-3F21-82C9-434CBD3FA712> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x98a18000 - 0x98a7dff7  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <1C4B66EB-3186-31BE-B93F-878E49334C49> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x98a7e000 - 0x98a83ffd  libGFXShared.dylib (??? - ???) <7C55BE22-CDB5-3192-B7F0-96EA754A20AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x98b66000 - 0x98bc3ffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x98bc4000 - 0x98c02fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0AE59D4F-FFA7-3539-8B86-AD8993894AA0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x98c2e000 - 0x98e57ffb  com.apple.QuartzComposer (5.0 - 232) <B25A191A-B96D-3BB0-B7D5-FDE4A97DFD06> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x98e58000 - 0x98ed0ff2  com.apple.CorePDF (3.0 - 3.0) <A0EC8F60-A622-347E-979A-F71939C45E5F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98f1f000 - 0x98f2affc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x98f42000 - 0x98f64ffe  com.apple.framework.familycontrols (3.0 - 300) <AE51B604-D32D-32F7-AEDC-B1C4EB7191C6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x98f65000 - 0x990b7ffb  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <5767C518-343D-36DB-8D59-C72986161AEC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x990b8000 - 0x990b8fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x990e2000 - 0x99169fff  com.apple.print.framework.PrintCore (7.0 - 366) <D037D344-7463-3620-AE8F-8D0D3EA5CE8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9916a000 - 0x99177fff  com.apple.HelpData (2.1.0 - 68) <C1E7DE84-CCC3-3495-93B7-3D47FBC1FFD1> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x99178000 - 0x991a6ffb  com.apple.DictionaryServices (1.2 - 158) <C614930F-520D-3F77-AD0D-0E16FBCB98CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x991a7000 - 0x991a8fff  com.apple.TrustEvaluationAgent (2.0 - 1) <EABDA7EE-A98F-35B8-9E3E-7075BA651C68> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x991a9000 - 0x991d2ffe  com.apple.opencl (1.50.62 - 1.50.62) <52059AB5-8E0D-356E-98AA-71A4777CBE57> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x991f7000 - 0x991fbff7  com.apple.OpenDirectory (10.7 - 144) <A117580D-FD86-381E-82FD-B1A040045031> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x991fc000 - 0x9924cff4  libTIFF.dylib (??? - ???) <25796A90-ABD2-3A3A-800C-1056D343A71F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x99253000 - 0x99253fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x99254000 - 0x99257ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <B9344DE6-B84D-352C-95AD-EF73A68B8A10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x99258000 - 0x99854fe3  libclh.dylib (4.0.3 - 4.0.3) <F5D55EBC-3BA3-357F-9E87-3499B6EF087E> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x99861000 - 0x99861fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x99862000 - 0x99879ff8  com.apple.CoreMediaAuthoring (2.0 - 889) <49B55753-BD7E-3889-BA60-15294DA49CB7> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x9987e000 - 0x99976ff7  libFontParser.dylib (??? - ???) <C428D41A-8635-3423-A2F0-8BA9819F212B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x99977000 - 0x999b5fff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x999b6000 - 0x999b6ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x999b7000 - 0x999edfff  com.apple.DebugSymbols (2.1 - 85) <0F996A4A-16A7-3C90-8037-0E2958D1FB16> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x99b52000 - 0x99b62fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x99b63000 - 0x99cc5fff  com.apple.QTKit (7.7.1 - 2246) <3BFE9BE6-4DDD-3D21-9695-0ECE773128E6> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x99cc6000 - 0x99cc6fff  com.apple.vecLib (3.7 - vecLib 3.7) <A01CD788-26FB-320F-8617-5A7DF0F9031E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x99cc7000 - 0x99d87ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <50767823-56BA-373D-BC5A-37B17B659838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x99d88000 - 0x99ee9ffb  com.apple.QuartzCore (1.7 - 269.0) <221FF6A0-9C2C-3977-BC2A-A84C392BA49B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99eea000 - 0x99f81ff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x99f82000 - 0x9a00cffb  com.apple.SearchKit (1.4.0 - 1.4.0) <C8567435-9CD1-35EE-AE05-304D28858C42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9a00d000 - 0x9a015ffb  com.apple.DisplayServicesFW (2.5.0 - 302.1.2) <AD856B0D-3602-3C37-8B64-C6BB53A6F248> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x9a016000 - 0x9a076ffb  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <6026C895-3DC6-3785-A7BB-2F2B9E292D95> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9a125000 - 0x9a425fff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <E098AC3A-E795-3C28-BA92-EED51C461A6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9a426000 - 0x9a477ff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x9a478000 - 0x9a49effb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9a4d0000 - 0x9a6eeff7  com.apple.imageKit (2.1 - 1.0) <0B16E64D-597C-3ECE-8076-7991AF7D6820> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x9a6ef000 - 0x9a6f0ffd  libCVMSPluginSupport.dylib (??? - ???) <8057030D-B290-3A8B-9828-3A1BD123B124> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x9a6f1000 - 0x9a7b1fff  com.apple.CoreServices.OSServices (478.25.1 - 478.25.1) <7971F047-D9EF-3D9C-A65F-E5A8C6CECF06> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9a8ae000 - 0x9b333ffe  com.apple.AppKit (6.7 - 1138) <1CEDE402-32DD-3C10-B3B3-8C3DDBE8335D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9b334000 - 0x9b334fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <881C1C85-2DEC-38DE-BC97-7804BC907282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9b335000 - 0x9b3c9ff7  com.apple.LaunchServices (480.19 - 480.19) <A68C0688-4ED1-35F1-BF44-F5B1917084A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x9b3ca000 - 0x9ba2f65b  com.apple.CoreGraphics (1.600.0 - ???) <DD3B7ADA-0F19-371E-BB87-F3C08464134A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x9ba30000 - 0x9ba39fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9ba3a000 - 0x9bd3dff7  com.apple.Foundation (6.7 - 833.1) <94BFFEDD-0676-368D-B4C6-8784E1DA4306> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9bd3e000 - 0x9be4fff7  libJP2.dylib (??? - ???) <E938C201-C508-3E3D-B9A9-81FE52349E1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x9be50000 - 0x9be9eff3  com.apple.ImageCaptureCore (3.0 - 3.0) <16B80ABD-DCDA-34AA-A539-F36A4D39CB03> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x9c262000 - 0x9c2bafff  com.apple.HIServices (1.9 - ???) <058E00E0-F1B4-395F-813E-C49C0C5F3BA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x9c33b000 - 0x9c37effd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x9c385000 - 0x9c390fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x9c391000 - 0x9c392ff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x9c393000 - 0x9c396fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9c397000 - 0x9c3e7ff9  com.apple.QuickLookFramework (3.0 - 489.1) <46E053F5-E7CC-3358-93AF-635837E4ECCA> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9c3f2000 - 0x9c3f6fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9c721000 - 0x9c724ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9c725000 - 0x9c74dff0  com.apple.CoreServicesInternal (113.7 - 113.7) <F5724FAC-8BB8-3F0F-B8BC-36F2CA75A23D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 16685
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=217.3M resident=126.2M(58%) swapped_out_or_unallocated=91.2M(42%)
    Writable regions: Total=113.0M written=22.7M(20%) resident=33.7M(30%) swapped_out=0K(0%) unallocated=79.3M(70%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                32.0M
    ATS (font support) (reserved)        4K        reserved VM address space (unallocated)
    CG backing stores                  224K
    CG image                            12K
    CG raster data                      116K
    CG shared images                  3448K
    CoreGraphics                          8K
    CoreServices                      2040K
    IOKit                              5608K
    MALLOC                            29.4M
    MALLOC guard page                    32K
    Memory tag=240                    14.9M
    Memory tag=242                      12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    SQLite page cache                  192K
    Stack                              67.6M
    VM_ALLOCATE                        53.8M
    __CI_BITMAP                          80K
    __DATA                            16.3M
    __DATA/__OBJC                      168K
    __IMAGE                            1256K
    __IMPORT                            48K
    __LINKEDIT                        44.3M
    __OBJC                            2328K
    __OBJC/__DATA                        48K
    __PAGEZERO                            4K
    __TEXT                            173.0M
    __UNICODE                          544K
    mapped file                      103.3M
    shared memory                      1216K
    shared pmap                        6548K
    ===========                      =======
    TOTAL                            558.2M
    TOTAL, minus reserved VM space    558.2M
    Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.42f4
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.100.98.75.10)
    Bluetooth: Version 2.5.0f17, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS21N
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8217, 0x06110000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2

Maybe you are looking for

  • How can we deal with Button group

    hi, i was wondering how can we add a listener to the buttons in abutton group,i have a buttongroup,2 textfields for totals and button"submit" and "update".what i wanted is when i press on submit,then teh button taht was selcted in buttongroup should

  • Error while opening external list in share point 2013.

    I am getting an error: - "Unable to render the data. If the problem persists, contact your web server administrator. Correlation ID:bbc0a39c-f375-306e-e5af-59e06e900a3e".

  • Media Encoder CS6 Mac crashing on Startup

    Mac OS 10.8.2 I can open it fine in root user mode, I even copied the preferences folder over from the root user library but it still crashes. This is the report the Mac OS generated: Process:         Adobe Media Encoder CS6 [425] Path:            /A

  • Aperture Brush-in is "off" while working, correct on export?

    I have a photo where the subject needs to be "lightened" as she was in shadows, while the background needs to remain at the current exposure. I've done this on several other photos in the set using a Curves block, brushing over the subject entirely,

  • Can I sync music from my phone to my laptop?

    My laptop broke and i lost all the songs on my itunes, however, i still have the songs on my iphone. Is there a way I can put my songs from my iphone bacak onto my computer. This is very frustrating.