Still getting uncaught exception in c++ API running keywords query

When I run a search based on keyword in java application, the first time, most likely the query results is returned, but for the subsequent keywords searches, the application throws the error below...
com.sleepycat.dbxml.XmlException: Uncaught exception from C++ API, errcode = INTERNAL_ERROR
     at com.sleepycat.dbxml.dbxml_javaJNI.XmlQueryExpression_execute__SWIG_1(Native Method)
     at com.sleepycat.dbxml.XmlQueryExpression.execute(XmlQueryExpression.java:85)
     at epss.utilities.XQueryUtil.getQueryResultsByKeywords(XQueryUtil.java:168)
     at epss.search.XmlContentByKeywords.getDocumentContentByKeywords(XmlContentByKeywords.java:123)
     at com.epss.test.TestApp.main(TestApp.java:83)
I know one of the many things to consider fixing this problem is to make sure all berkeley db xml objects (e.g. xmlContainer, XmlManager, XmlResults, XmlQueryExpression, etc) delete() method is called on those obects once they are done to free resources etc. I've been doing all that and still getting the error. This problem doesn't happen when i run a search for based on id (attribute value).
Note: I'm not explicitly using trasanction since i turned on transaction in EnvironmentConfig to create XmlManager.
This is the method that does the query and return us the results...
     * Gets the query results by keywords.
     * @param keywords
     * the keywords under search
     * @param manager
     * the object used to perform activities such as preparing XQuery
     * queries
     * @return the query results by keywords
     public static synchronized XmlResults getQueryResultsByKeywords(
               final String keywords, XmlManager manager) {
          /* Represents a parsed XQuery expression. */
          XmlQueryExpression expr = null;
          /* Encapsulates the results of a query that has been executed. */
          XmlResults results = null;
          /* The query context */
          XmlQueryContext context = null;
          // The value
          XmlValue value = null;
          // Declare string variables
          String query = null;
          // Run logic
          try {
               /* Do null check */
               if (manager != null) {
                    // Make XmlValue object
                    value = new XmlValue(keywords);
                    // Get a query context
                    context = manager.createQueryContext();
                    // Bind xquery variable value to its variable name
                    context.setVariableValue(DataConstants.KEYWORD, value);
                    // Build the query string
                    query = QueryStringUtil.xQueryStringByKeywords(
                              DataConstants.ELEMENTS, DataConstants.KEYWORD);
                    // Compile an XQuery expression into an XmlQueryExpression
                    expr = manager.prepare(query, context);
                    // Evaluates the XQuery expression against the containers
                    results = expr.execute(context);
                    /* Release resources */
                    if (results.size() == 0) {
                         results.delete();
                         results = null;
                    // Free the native resources
                    expr.delete();
                    // Dereference objects
                    expr = null;
                    value = null;
                    context = null;
                    query = null;
                    manager.delete();
                    manager = null;
                    return results;
          } catch (final XmlException e) {
               // Free the native resources
               expr.delete();
               // dereference objects
               expr = null;
               value = null;
               context = null;
               query = null;
               // Write to log
               WriteLog.logExceptionToFile(e);
          return null;
This is the callback method that return the query string...
     * Returns query keyword query string to retrive keywords.
     * @param elementName The particular node under search
     * @param keywords The keywords being searched under the node
     * @return The string used for the query
     public static synchronized String xQueryStringByKeywords(
               final String elementName, final String keywords) {
          /* Build query string */
          final StringBuffer sb = new StringBuffer();
          sb.append("let $found := false\n");
          sb.append("let $terms := tokenize($");
          sb.append(keywords);
          sb.append(", \",\")\n");
          sb.append("for $element in collection('");
          sb.append(DataConstants.CONTAINER);
          sb.append("')");
          sb.append("/(FUNDOC | JOBDOC)");
          sb.append("//");
          sb.append(elementName);
          sb.append("//");
          sb.append("parent::*[1]");
          sb.append("\nlet $found := for $term in $terms\n");
          sb
                    .append(" return if (contains(lower-case($element), lower-case($term)))");
          sb.append(" \nthen \"true\"");
          sb.append(" else \"false\" \n");
          sb.append(" return if ($found = \"false\") \nthen () else $element");
          return sb.toString();
Edited by: user3453165 on Jan 20, 2010 7:20 AM

I am using berkeley db xml 2.5.13 on windows xp. Yes that's the complete error message. I am going to add my environment class and also part of the keyword search class that extends the environment, which will give u idea about how i'm creating and using transaction. I don't explicitly use transaction. I used to explicitly use it but i thought it's redundant. So when i create the db environment, i just call           envc.setTransactional(true) and pass the EnvironmentConfig object (i.e. envc) to the environment to create instance of XmlManager and this is fine. Look below and u will see what i mean. Please let me know if u need more information. Thanks for your help. Appreciate it.
Tue, 2010-01-19 10:58:27 PM
com.sleepycat.dbxml.XmlException: Uncaught exception from C++ API, errcode = INTERNAL_ERROR
     at com.sleepycat.dbxml.dbxml_javaJNI.XmlQueryExpression_execute__SWIG_1(Native Method)
     at com.sleepycat.dbxml.XmlQueryExpression.execute(XmlQueryExpression.java:85)
     at epss.utilities.XQueryUtil.getQueryResultsByKeywords(XQueryUtil.java:166)
     at epss.search.XmlContentByKeywords.getDocumentContentByKeywords(XmlContentByKeywords.java:123)
     at com.epss.test.TestApp.main(TestApp.java:66)
The environment class...
package epss.core;
import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import com.sleepycat.db.DatabaseException;
import com.sleepycat.db.Environment;
import com.sleepycat.db.EnvironmentConfig;
import com.sleepycat.dbxml.XmlContainer;
import com.sleepycat.dbxml.XmlContainerConfig;
import com.sleepycat.dbxml.XmlManager;
import com.sleepycat.dbxml.XmlManagerConfig;
import epss.utilities.GlobalUtil;
* Class used to open and close Berkeley Database environment.
public class DatabaseEnvironment {
     /** The db env_. */
     private Environment dbEnv_ = null;
     /** The mgr_. */
     private XmlManager mgr_ = null;
     /** The opened container. */
     private XmlContainer openedContainer = null;
     /** The new container. */
     private XmlContainer newContainer = null;
     /** The path2 db env_. */
     private File path2DbEnv_ = null;
     /** Whether we are creating or opening database environment. */
     private int mode = -1;
     /** Constants for mode opening or mode creation. */
     private static final int OPEN_DB = 0, CREATE_DB = 1;
     * Set the Mode (CREATE_DB = 1, OPEN_DB = 0).
     * @param m
     * the m
     protected synchronized void setDatabaseMode(final int m) {
          if (m == OPEN_DB || m == CREATE_DB)
               mode = m;
     * Gets the manager.
     * @return the manager
     protected synchronized XmlManager getManager() {
          return mgr_;
     * Gets the opened container.
     * @return the opened container
     protected synchronized XmlContainer getOpenedContainer() {
          return openedContainer;
     * Gets the new container.
     * @return the new container
     protected synchronized XmlContainer getNewContainer() {
          return newContainer;
     * Initialize database environment.
     * @throws Exception
     * the exception
     protected synchronized void doDatabaseSetup(String container)
               throws Exception {
          switch (mode) {
          case OPEN_DB:
               // check database home dir exist
               if (!(isPathToDbExist(new File(DataConstants.DB_HOME)))) {
                    WriteLog.logMessagesToFile(DataConstants.DB_FILE_MISSING);
                    cleanup();
                    throw new IOException(DataConstants.DB_FILE_MISSING);
               } else {
                    // Configure database environment
                    configureDatabaseEnv();
                    // Configuration settings for an XmlContainer instance
                    XmlContainerConfig config = new XmlContainerConfig();
                    // DB shd open within a transaction
                    config.setTransactional(true);
                    // Opens a container, returning a handle to an XmlContainer obj
                    openedContainer = getManager().openContainer(container, config);
               break;
          case CREATE_DB:
               // Set environment home
               setDatabaseHome();
               // Validate database home dir exist
               if (isPathToDbExist(new File(DataConstants.DB_HOME))) {
                    // Configure database environment
                    configureDatabaseEnv();
                    // Configuration settings for an XmlContainer instance
                    XmlContainerConfig config = new XmlContainerConfig();
                    // Sets whether documents are validated
                    config.setAllowValidation(true);
                    // DB shd open within a transaction
                    config.setTransactional(true);
                    // The database container path
                    File file = new File(path2DbEnv_, container);
                    // Creates a container, returning a handle to
                    // an XmlContainer object
                    newContainer = getManager().createContainer(file.getPath(),
                              config);
                    newContainer.setAutoIndexing(true);
               break;
          default:
               throw new IllegalStateException("mode value (" + mode
                         + ") is invalid");
     * Validate path2 db env.
     * @param path2DbEnv
     * the path2 db env
     * @return true, if checks if is path to db env
     private synchronized boolean isPathToDbExist(final File path2DbEnv) {
          boolean returnValue = false;
          if (!(path2DbEnv.isDirectory() || path2DbEnv.exists())) {
               throw new IllegalArgumentException(DataConstants.DIR_ERROR
                         + path2DbEnv.getAbsolutePath()
                         + DataConstants.DOES_NOT_EXIST);
          } else {
               path2DbEnv_ = path2DbEnv;
               // Test whether db home exist when mode is 0
               if (path2DbEnv_.exists() && mode == OPEN_DB) {
                    // Test whether all db files exist
                         returnValue = true;
               } else {
                    // Test whether db home exist when mode is 1
                    if (path2DbEnv_.exists() && mode == CREATE_DB) {
                         returnValue = true;
          return returnValue;
     * Set database environment home.
     * @throws IOException
     * Signals that an I/O exception has occurred.
     private synchronized void setDatabaseHome() throws IOException {
          // The base dir
          File homeDir = new File(DataConstants.DB_HOME);
          // If db home delete fails, throw io exception
          if (!GlobalUtil.deleteDir(homeDir) && homeDir.exists()) {
               WriteLog.logMessagesToFile(DataConstants.ERROR_MSG);
               throw new IOException(DataConstants.ERROR_MSG);
          } else {
               // If delete is successful, recreate db home
               final boolean success = homeDir.mkdir();
               // if home dir creation is successful
               if (success) {
                    // Construct file object
                    File logDir = new File(homeDir, DataConstants.LOG_DIR);
                    // File dbHome = new File(homeDir, DataConstants.DB_DIR);
                    // Create log file
                    boolean logCreated = logDir.mkdir();
                    // Create db home
                    // boolean dbHomeCreated = dbHome.mkdir();
                    if (logCreated) {
                         WriteLog.logMessagesToFile(homeDir.getAbsolutePath()
                                   + " successfully created");
               } else {
                    WriteLog.logMessagesToFile(homeDir.getAbsolutePath()
                              + " failed to create");
     * Sets environment configuration and it's handlers.
     * @throws Exception
     * the exception
     private synchronized void configureDatabaseEnv() throws Exception {
          // Construct a new log file object
          File logDir = new File(path2DbEnv_, DataConstants.LOG_DIR);
          // The environment config
          EnvironmentConfig envc = new EnvironmentConfig();
          // estimate how much space to allocate
          // for various lock-table data structures
          envc.setMaxLockers(10000);
          // estimate how much space to allocate
          // for various lock-table data structures
          envc.setMaxLocks(10000);
          // estimate how much space to allocate
          // for various lock-table data structures
          envc.setMaxLockObjects(10000);
          // automatically remove log files
          // that are no longer needed.
          envc.setLogAutoRemove(true);
          // If environment does not exist create it
          envc.setAllowCreate(true);
          // For multiple threads or processes that are concurrently reading and
          // writing to berkeley db xml
          envc.setInitializeLocking(true);
          // This is used for database recovery from application or system
          // failures.
          envc.setInitializeLogging(true);
          // Provides an in-memory cache that can be shared by all threads and
          // processes
          envc.setInitializeCache(true);
          // Provides atomicity for multiple database access operations.
          envc.setTransactional(true);
          // location of logging files.
          envc.setLogDirectory(logDir);
          // set the size of the shared memory buffer pool
          envc.setCacheSize(500 * 1024 * 1024);
          // turn on the mutexes
          envc.setMaxMutexes(500000);
          // show error messages by BDB XML library
          envc.setErrorStream(System.err);
          // File db_home = new File(path2DbEnv_, "db");
          // Create a database environment
          dbEnv_ = new Environment(path2DbEnv_, envc);
          // Configure an XmlManager instance via its constructors
          XmlManagerConfig mgrConf = new XmlManagerConfig();
          mgrConf.setAllowExternalAccess(true);
          mgrConf.setAllowAutoOpen(true);
          // Create xml manager object
          mgr_ = new XmlManager(dbEnv_, mgrConf);
          mgr_.setDefaultContainerType(XmlContainer.NodeContainer);
     * This method is used to close the database environment freeing any
     * allocated resources that may have been held by it's handlers and closing
     * any underlying subsystems.
     * @throws DatabaseException
     * the database exception
     protected synchronized void cleanup() throws DatabaseException {
          if (path2DbEnv_ != null) {
               path2DbEnv_ = null;
          if (newContainer != null) {
               newContainer.delete();
               newContainer = null;
          if (openedContainer != null) {
               openedContainer.delete();
               openedContainer = null;
          if (mgr_ != null) {
               mgr_.delete();
               mgr_ = null;
          if (dbEnv_ != null) {
               dbEnv_.close();
               dbEnv_ = null;
// This is the keyword search class...
public final class XmlContentByKeywords extends DatabaseEnvironment {
     public synchronized Document getDocumentContentByKeywords(String keywords)
               throws Exception {
          // Encapsulates the results of a query that has been executed.
          XmlResults results = null;
          // The manager
          XmlManager manager = null;
          // Run the logic
          if (keywords != null) {
               try {
                    // Flag to open db
                    final int OPEN_DB = 0;
                    // The keywords content
                    Document keywordsContent = null;
                    // Open db connection
                    try {
                         // Get database instance
                         setDatabaseMode(OPEN_DB);
                         // Open this container in db environment
                         doDatabaseSetup(DataConstants.CONTAINER);
                    } catch (Exception ex) {
                         // Create error node with error message
                         keywordsContent = Wrapper.createErrorDocument(ex
                                   .getMessage());
                         // Return the error node doc
                         return keywordsContent;
                    // Manager instance
                    // final XmlManager manager = getManager();
                    manager = getManager();
                    // Transaction instance
                    // final XmlTransaction txn_ = getTxn();
                    // The map
                    Map<String, Document> map = null;
                    // The temp map
                    Map<String, Document> tempMap = null;
                    // Return the query results
                    results = XQueryUtil.getQueryResultsByKeywords(keywords, manager);
// use results here...
// close results when done
results.delete();
results = null;
manager.delete();
manager = null;
}

Similar Messages

  • DA0003: Exception CS, Unable to run the query execute

    Hi all,
    I try to use a stored procedure as data provider but i get this error
    DA0003: Exception CS, Unable to run the query execute
    I use BusObj Full Client 6.5 pointing to SQL2005.
    I choose stored procedure as data providers of a new report, then choose the Oledb connection to the database in which the sproc is saved (this sproc executes some queries, all on the same db). Then I fill in the parameter of the sproc and when i click OK I get this error.
    The sp works fine if executed from a query tool. Basically it queries BusObj Security Domain in order to get the documents a single user has linked (both enabled and disabled). It doesn't do nothing exceptionall except using some table variables... I tried also with this simple func:
    CREATE FUNCTION [dbo].[Yesterday] (@date int)
    RETURNS int AS BEGIN
       DECLARE @Yesterday int
       SET @yesterday = convert(varchar, DATEADD(dd, -1, convert(datetime, str(@date), 112) ), 112)
       RETURN(@Yesterday)
    END;
    But it returns the same error!
    I tried changing middleware to the DB from oleDB to ODBC but in this case it doesn't prompt me for parameters and when i click execute it fails saying the sproc expects a parameter...
    I have no idea of what the cause may be... Can anybody help please?

    Hi Alberto,
    Could you please test the following solutions to resolve the issue.
    Solution1:
    Test the issue by inserting the following parameter in .SBO file.
    <Parameter Name="Force SQLExecute">Always</Parameter> .
    Solution2
    Just put SET NOCOUNT OFF in the end of the stored procedure SQL.
    If the above doesnu2019t works then please try the following solution.
    Solution3
    Make the new connection from the scratch using ODBC connection and test the issue.
    I hope this will help you.
    Regards,
    Sarbhjeet Kaur

  • Self signed Applet - still getting Security Exception...

    Hi everyone...
    I m new to Java Mail... Nd I m developing a Applet to send mail from my Gmail account, nd I used keytool, jarsigner to Self sign the applet. Nd I wrote a Html page and when calling my applet method using javascript, I m having Security Exception... And I m using Java 1.5 (i.e., J2SE 5)
    Here is the sample of my code...
    --------- MyMail.java -----------
    import javax.mail.*;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    And all neccessory packages are imported....
    public class MyMail extends JApplet
         String server = "smtp.gmail.com";
         String username;
         String password;
         String fromAddres="";
         String toAddres="";
         Other Variable declaration goes here........
    Session ses;
    Transport tr;
    MimeMessage msg;
         public void init() //For testing purpose
              doLogin("username","password"); //My account details
         public void doLogin(String user,String pass)
              username = user;
              password = pass;
              boolean success;
              fromAddres = user+"@gmail.com";
              toAddres = "[email protected]";
              subject = "TEst SubJect";
              body = "This is Test Mail";
              success = doAuthentication();
              if(success)
                   setHeaders(server,username,password,fromAddres,toAddres,cc,bcc,htmlFormat,subject,body);
                   sendMail(ses);
                   doLogout();
         public void doLogout()
              //Deals with the logout from my account
         public boolean doAuthentication()
              //Deals with the authentication of my account
              // Setting properties, creating a session, getting transport object...
              //and returns true if authentication is success, false if not.
         public void setHeaders(String server, String username, String password, String fromAddress, String toAddress, String cc, String bcc, boolean htmlFormat, String subject, String body)
              //Sets the headers fields for the message (recieved through arguments)
         public void sendMail(Session ses)
              //Deals with sending mail
    class MyPasswordAuthenticator extends Authenticator
         //Deals with the authentication of my account
    ---------- MyMail.html -----------
    <html>
    <head>
    <script language=javascript>
    function sendmail()
    document.MyMail.doLogin("username","password"); //my account details
    </script>
    </head>
    <body>
    <input type=button name=but value=Send mail onclick=sendmail()>
    <applet name=MyMail code=MyMail.class
    archive=mail.jar,activation.jar,mailplus.jar width=0 height=0>
    </applet>
    </body>
    </html>
    And the applet is Self signed using the tools supplied from Java SDK...
    it got signed...
    And as the applet got loaded when i opend the MyMail.html, as i called the doLogin(..,..) in init() it is sending mail successfully...
    The problem is.... As I given the action for my button to send mail (by calling java method from java script i.e., calling doLogin() when the button clicked) I m getting Security Exception
    So...anyone plz tell me the solution....
    Thnx in advance....
    - Kanta

    http://www.google.nl/search?hl=nl&q=site%3Asun.com+javascript+signed+applet&btnG=Google+zoeken&meta=
    DoPrivileged would solve your problem but I've seen some cases where the
    threaded (link mentioned below second post) mothod is the only way it'll work.
    Signing applets:
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post and reply 18 for the java class file using doprivileged
    Still problems?
    A Full trace might help us out:
    http://forum.java.sun.com/thread.jspa?threadID=656028

  • TS1489 the instructions are misleading, there is no compatability tab under itune properties. still getting the message that itune.exe run in compatability mode-so??

    dear all,
    appreciate any help with the new iyune install.
    get a message that itune.exe set to run in compatabilty mode for an older version of windows. i use windows7.
    tried to follow the apple support instructions but found them misleading as couldn find compatability tab under (right click) prperties...
    any other idea??
    many thanks

    Amazing that someone noticed this post and took a stab at it after over a year... Actually, I found my answer long ago, and have tried to go back and post?it'son several boards where I had been looking for the answer. It seems to be such a common problem that I figure someone else can surely use this solution as I did. I would suggest that anyone?who is experiencing the frustration of not?getting their computer to recognize their device?read the very enlightening and helpful page that I am linking to here:
    http://www.misticri'ver.net/forums/showthread.php?t=30939? (this is from a forum for iRi'ver, but the info and fix are uni'versal)
    This simple solution involves correcting the ENUM keys in the Registry (not as scary as you might think) and deleting all instances of your player from the Device Manager and then reinstalling so that Windows and other applications will all recognize your player again. It's so simple, and once I tried it, I was amazed that's all it took to fix the problem.
    ?I?suggest you read the whole page and follow the instructions as they are given. I deleted and re-installed my player several times and then rebooted a couple of times before it took effect, but then it did, and I was able to download the Firmware and have had continued success with my original player that I posted about as well as others I have acquired since I first posted that message in 2006. For reasons I have not yet identified, this problem still happens every now and again, sometimes when I switch between players to synchronize. It may well be that when I use my registry cleaner or some other utility that "fixes" my registry, that it resets this particular key - but as long as it's easy to fix, it's not a problem. Hope this helps others who may stumble upon this odd little problem with the Zen Xtra.Message Edited by TrixieInDixie on -05-200709:28 PM

  • Getting uncaught exception error when i start appworld. 'java.lang​.noclassde​ffounderro​r'

    my appworld has stopped working.  I recently installed shazam for free from BB. was using and exited then tried to find a scanner app.  now getting this error. have pulled battery. have reinstalled appworld. my phone is a storm 9530 running v5.0.0.419 (platform 4.2.0.179).  Any ideas for a solution?
    Also, believe i recently updated appworld (this morn).  Believe probem was already occuring last night.

    Has had exactly the same problem like you. Tried reinstalling app world more than 10 times, even with a complete wipe but it still keeps giving that message. I was hoping to reinstall the older version of appworld I formerly had, may be my OS version does not support the uphgrade. if possible, could you please send me that link to dowload and install that older version please-I have been looking for such I have not seen. you can send it to my pin <removed>.
    i'll appreciate that
    EDIT: Personal Information such as e-mail is prohibited for your security. Please review User Guidelines  under section "Be careful."

  • After updating my iTunes to 10.4 I get an error message saying "iTunes was not insatlled correctly. Please reninstall iTunes. Error 7 (widows error 999).  I reinstalled and still get same message when trying to run iTunes.

    When I installed the update originally, it said it installed correctly.  How do I fix this?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99659)

  • ICal Crashes on Launch with "UNCAUGHT EXCEPTION"

    For a while now, I have not been able to launch iCal on the MacBook Pro Duo running 10.5. The specific message is "__TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4". I've tried several of the ideas but to no avail, up to and including a complete clean install of Mac OS 10.5 and Combo Update (currently 10.5.6)
    - reset the Sync for Calendars (both ways - from me.com to CPU, and vice versa)
    - remove the cache files under ~/Library/Calanedars
    - uninstall iCal and reinstall from the Mac OS X Leopard DVD
    - create a new user (Standard or Admin) and try launching an empty calendar: +same thing+
    - Regression: it works with Mac OS 10.5.6 on a PowerMac G5 (2003), but not on any Intel laptops.
    I thought there was a posting that was close to an answer for which the topic was marked Answered but it doesn't seem to there anymore, and it wasn't much different from any of the above ideas.
    Is anybody else having these problems? Some people have told me they just use Google Calendars.

    Here's the full post, with an updated error: "Exception Type: EXC_BREAKPOINT (SIGTRAP)"
    -> Assuming this is still an uncaught exception, this newer log provides the kind of exception.
    -> Binary portion follows as requested. Sometimes the details do help; thank you for asking.
    Process: iCal [6980]
    Path: /Applications/iCal.app/Contents/MacOS/iCal
    Identifier: com.apple.iCal
    Version: 3.0.6 (1273)
    Build Info: iCal-12730000~2
    Code Type: X86 (Native)
    Parent Process: launchd [317]
    Date/Time: 2009-04-20 13:54:34.584 -0700
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSURL initFileURLWithPath:]: nil string parameter'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9273ffb4 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x94cffe3b objcexceptionthrow + 40
    2 com.apple.CalendarStore 0x972c4038 +[CalCalendarStore(CalCalendarStore_Internal) setupCalendarStore:] + 1799
    3 com.apple.iCal 0x001a297b 0x1000 + 1710459
    4 com.apple.CoreFoundation 0x9274e915 -[NSSet makeObjectsPerformSelector:] + 181
    5 com.apple.AppKit 0x954bf45a -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1533
    6 com.apple.AppKit 0x954b5686 loadNib + 264
    7 com.apple.AppKit 0x954b4fe8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 946
    8 com.apple.AppKit 0x954b4c2b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 171
    9 com.apple.AppKit 0x954b4b69 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 391
    10 com.apple.AppKit 0x954b4818 NSApplicationMain + 434
    11 com.apple.iCal 0x000024fe 0x1000 + 5374
    12 com.apple.iCal 0x000a9e5e 0x1000 + 691806
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa02ae0f0 ebx: 0x94cffe1c ecx: 0xa02ad1a0 edx: 0x00252000
    edi: 0x003aa5f0 esi: 0x00000001 ebp: 0xbffff608 esp: 0xbffff608
    ss: 0x0000001f efl: 0x00000286 eip: 0x9273ffb4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x55c21000
    Binary Images:
    0x1000 - 0x1ebffb com.apple.iCal 3.0.6 (1273) <9b942b67224a398ef87211bf3973853e> /Applications/iCal.app/Contents/MacOS/iCal
    0x27d000 - 0x288fff +com.rogueamoeba.audiohijackserver.hermes 2.1.0 (2.1.0) <fdc43ce21d2d50def062d8daceaf1bac> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x1ef2000 - 0x20eafff com.apple.RawCamera.bundle 2.0.13 (435) <083354ccec68bf7c9fc99523a5838f92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x2bc8000 - 0x2bcdff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x900f8000 - 0x90149ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9014a000 - 0x901d4fef com.apple.DesktopServices 1.4.7 (1.4.7) <7898a0f2a46fc7d8887b041bc23e3811> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x901d5000 - 0x901dbfff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9024f000 - 0x90254fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90255000 - 0x903a7ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x903a8000 - 0x903b8fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x903b9000 - 0x903c0ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x903c1000 - 0x903cafff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x903cb000 - 0x903d3fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90478000 - 0x905dfff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x905e0000 - 0x905e7ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x905e8000 - 0x90698fff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x907d2000 - 0x907d2ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x907d3000 - 0x907e4ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90856000 - 0x908bcffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x908bd000 - 0x90a03ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90a0c000 - 0x90a56fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90a58000 - 0x90ad5fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90ad7000 - 0x90b63ff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90b64000 - 0x90b72ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x90c3d000 - 0x90c41ffd com.apple.AOSNotification 1.0.0 (68.10) <38239776860eed3c5265d4ae3c21dd73> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90c42000 - 0x90c60ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90c61000 - 0x90ca3fef com.apple.NavigationServices 3.5.2 (163) <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90ca4000 - 0x90ca9ffc com.apple.KerberosHelper 1.1 (1.0) <d789cb3b793a05879bde688c19f60afe> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x90caa000 - 0x90cc7ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90cc8000 - 0x90cdefff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90cdf000 - 0x90cfaffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91021000 - 0x913befef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x913bf000 - 0x913fefef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x913ff000 - 0x9140afe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9140b000 - 0x91465ff7 com.apple.CoreText 2.0.4 (???) <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9146c000 - 0x9146ffff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91470000 - 0x91471ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x91472000 - 0x914a4ff7 com.apple.DotMacSyncManager 1.2.3 (305) <76f2a03fbb91d701cd8c1d1dde21b531> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x914a5000 - 0x914cdfff libcups.2.dylib ??? (???) <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib
    0x914e2000 - 0x916b0ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x916b1000 - 0x91a6ffea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x922fb000 - 0x9230affe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <98f7b46a9f1a099f77e1092ef8e29c63> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9230b000 - 0x92336fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x92337000 - 0x9263ffff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92640000 - 0x9264dfe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9264e000 - 0x92652fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x92653000 - 0x92786fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92787000 - 0x92b97fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92b98000 - 0x92c79fff com.apple.syncservices 3.1 (389.12) <e0c2241379300f52b12b479e53797016> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x92c7a000 - 0x92c9efeb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x92c9f000 - 0x92c9fff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92ca0000 - 0x92f1bfe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f1c000 - 0x92f1efff com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f1f000 - 0x92f23fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92f24000 - 0x930a3fff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x930a4000 - 0x93123ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93124000 - 0x931affff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x931b0000 - 0x931ecfff com.apple.DAVKit 3.0.6 (653) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x931ed000 - 0x9329fffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x932a0000 - 0x932d4fef com.apple.bom 9.0.1 (136.1.1) <e1f64b0dae30d560a1204c69c14751a0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x942b1000 - 0x94782f3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94904000 - 0x94910fff libbz2.1.0.dylib ??? (???) <cc1b7e3f5f4e2ff545157c368e09bc5e> /usr/lib/libbz2.1.0.dylib
    0x94a77000 - 0x94a77ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94a78000 - 0x94a78ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94a79000 - 0x94ac8fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94ac9000 - 0x94ac9ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94b02000 - 0x94b34fff com.apple.LDAPFramework 1.4.5 (110) <648b3ee893db8af0a5bbbe857ec0bb7d> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94b35000 - 0x94b41ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94c47000 - 0x94c4cfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94c4d000 - 0x94c7cfe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94c8a000 - 0x94c94feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94c95000 - 0x94caaffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94cab000 - 0x94ccaffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94ccb000 - 0x94cd2fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x94cd3000 - 0x94cebff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94cf6000 - 0x94dd6fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x94dd7000 - 0x94dd7fff com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94fc7000 - 0x95092fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95093000 - 0x95126ff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95179000 - 0x95197fff libresolv.9.dylib ??? (???) <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib
    0x95198000 - 0x95472ff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95473000 - 0x954adfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x954ae000 - 0x95cacfef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95cad000 - 0x95d06ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95d47000 - 0x95de4fe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95ec7000 - 0x95eebfff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x95eec000 - 0x95f69feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95f93000 - 0x96078ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96079000 - 0x9615aff7 libxml2.2.dylib ??? (???) <306036e0070330e35045650e6d9f0d05> /usr/lib/libxml2.2.dylib
    0x9615b000 - 0x961d5ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x961d6000 - 0x96233ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96234000 - 0x96238fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x96239000 - 0x96277ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96278000 - 0x962a5feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x962a6000 - 0x962a6ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x962ac000 - 0x962b7fff com.apple.dotMacLegacy 3.1 (246) <d335114af509bf38a7ead5274a93dfb1> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x96521000 - 0x96539fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9653a000 - 0x96601ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96602000 - 0x9664bfef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9669b000 - 0x96d3bfff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96d3c000 - 0x96df6fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <25243fd02dc5d4f4cc5780f6b2f6fe26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96df7000 - 0x96e7eff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x96e7f000 - 0x96f12fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96f13000 - 0x96f15ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96f16000 - 0x96f57fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96f58000 - 0x96f67fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x96f68000 - 0x96fc4ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96fc5000 - 0x96fc5ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96fc6000 - 0x97000ffe com.apple.securityfoundation 3.0.1 (35844) <2fbb6a1177ef98350b8aefc60737ba0e> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x97001000 - 0x97139ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x9713a000 - 0x97171fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97172000 - 0x971b6feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <29109fed9f54cbe3d3faea0603362719> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x971b7000 - 0x97224ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x97225000 - 0x97235ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97236000 - 0x97397ff2 com.apple.CalendarStore 3.0.6 (847) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x97398000 - 0x97398ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97399000 - 0x97440feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Uncaught Exception downloading document

    I'm getting 'Uncaught Exception java.lang.ClassCastException' when I try to download a document from a secure website (https), using the blackberry browser on Blackberry Curve 8310.
    What does this error indicate?  Any ideas for resolving this one?
    Thanks.

    Sorry for the late reply, I completely forgot this thread!
    From what I understand you only get this error when downloading from a particular site and not other websites correct? The site may not be compatible with the blackberry browser. Can you check the following:
    In you browser, press menu and click Options
    Go to Browser Configuration
    What is "Browser" set to?
    What is "Emulation Mode" set to?
    Changing browser to "Internet Browser" or "Browser" may help and changing "Emulation Mode" to one of the other settings may help as well. I can't say for certain which one will work, but you will have to try it out.
    Kijana
    Please remember to:
    1. Mark Accept as Solution on the appropriate post once your issue has been resolved
    2. Give Kudos to helpful posts (click the star next to the post)
    Thanks

  • Exception when trying to run an Web Application that uses a Web service

    Hello All,
    I get an exception when trying to run an Web Application that uses a Web service. The web application is a WebDynpro Application.(an application similar to the one "Using an Email Web Service in Web Dynpro" in the tutorial section of Web Dynpro but using a different web service)
    The exception is
    <b>Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (404) Not Found.</b>
    Could anyone give me an idea on what might be the problem ?
    Regards,
    Loveline.

    Hello,
    Like you said it was the problem with url.
    The webservice I used is actually running on the local machine (where the NetWeaver developer studio is installed); so in the url I had specified localhost. But I deployed the application on another server(SAP J2EE Engine). That is why it didn't work. On changing the url as required, the application is working fine.
    Thanks !
    Regards,
    Loveline.

  • Blackberry Curve 8530 - Update Problems - Now no BBM - "Uncaught Exception"???????????

    Had tons of issues after doing update earlier this week.  Have just about everything resolved (finally), but now my BBM won't even turn on.  I'm getting "Uncaught exception: java.lang.NullPointerException"  I've tried uninstalling and reinstalling, battery pull, etc.  Keep getting the same message, but only for BBM.
    Um, yeah....help.....please.  I'm  dying without BBM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Having the same issues I see posted here after the most recently Verizon forced wireless update except with my address book on a Storm 2.  I kept getting the icon to update, and I kept telling it not to update and not allowing the phone to schedule an update.  Then, one morning I wake up and my phone had updated! 
    I am a property manager for condominiums and HOA's.  My phone, it's contacts and calendar from Outlook are my lifeline.  All of my vendors, all of the Association's members, Board members, emergency contact info etc, are stored on my phone and laptop. After this forced wonderfull update, I cannot see any other contacts other than 1 787 times, I am receiving the uncaught exception java.lang.nullpointerexception" error option upon boot. If I do a search in the address book, it will find some of the contacts, but others are missing.  The only contact which is displayed in the contacts default view is the same one contact. I checked filters, I tried changing the sorting, etc.
    Of course this new update forced itself upon my phone the same morning during which at 5:00AM a major pipe burst in one of my Associations and crippled me for the next two days!  So during the first emergency call I spent about 20 minutes allowing access to all my applications without being able to make a single call and receiving all kinds of errors. 
    I just now am having a chance to work on the issue, and I call Verizon Wireless, enter my phone number and keep receiving the error that I must enter a 10 digit number 10 times. I finally get through to someone using my cell phone (which you are supposed to use a landline when calling if you need help with your phone), and they patch me through a line that says regular business hours are X to Z,  11:00PM being not during those times. So then I try the emergency support option, and get patched through to the same recording!!!!  What exactly is emergency support?
    So I am forced to support myself ....again.  I tried forcing an update to the address book and it simply won't sync. I double-checked the option to sync the address book and it was set to sync. I read to update the desktop manager through a clean install, so I did.  When I try to configure the address book serviceDesktop Manager 6 shows "address book not installed".  3 hours into this whole thing I believe I have found the answer which leads back to the original error I keep receiving...uncaught exception java.lang.nullpointerexception. 
    The only thing that worked for me was rolling the blackberry back, restoring the apps and data, and then forcing the information from Outlook back onto my Storm.
    Verizon...don't force updates upon your customers!!!!!  Not all of us have the time to spend several hours to resolve these matters!

  • Uncaught exceptions driving me CRAZY!

    I keep getting uncaught exception errors that lock my phone up.  I've tried restarting and taking the battery out, both of which eventually work for a while, but then I start to get the error messages again.  The latest - "Uncaught Exception Application net_rim_bb_facebook (464) is not responding; process terminated."  Any suggestions on what to do?

    Hi
    This what I did to completely wipe my BB. I wrote this before starting and printed it off.
    If your device is functioning, perform a backup now if you haven't already done so saving the file to a place and in a name that you can easily locate on computer.
    I then uninstalled DTM and then deleted all other references to BB/Rim in Windows Explorer thus removing the OS for the BB from the computer in order to ensure that the version I would reinstall would be a brand new downloaded version.
    Get the latest Desk Top Software (DTS)
    http://us.blackberry.com/apps-software/desktop/?CPID=OTC-DSKTPSW&cp=OTC-DSKTPSW
    and install it on the computer.
    Get the correct latest version of the OS
    http://us.blackberry.com/support/downloads/download_sites.jsp
    and save it to computer.
    To erase all the data on your BlackBerry device, complete the following steps.
    1) Download JL_Cmder from http://www.4shared.com/get/oqP9V-2Q/JL_Cmder_v19.html
    2) Install JL_Cmder to computer.
    3) Double check you have already backed-up the BB. If you DO NOT, you will lose ALL data.
    4) Make sure the DTS is closed and plug in the BB to computer via USB
    5) Go to the JL_Cmder on your computer and double click it to start. Now,this may take a few tries to connect, so keep trying until it does.
    6) On the first screen, Press any key to continue.
    7) Now, if your device uses a password, enter it now. If not, press "N"
    8) Press 4 to initiate the WIPE
    9) Press "Y" to continue
    10) Now type "blackberry" to continue
    11) On the BB you will see a white screen with a'507' Error. Don't worry, this is what you want! You are now ready to install the OS.
    Launch the new Desk Top Software on the computer
    1). On the home screen of the BlackBerry® Desktop Software, click Device > Update my device.
    2). Click View Other Versions. Click the version of the new OS you previously downloaded.
    3). Click Install. The DTM will install the OS and then provide you with a list of applications to install. If you have had difficulties with an app, do not install it.
    Do not disconnect the device until the whole process is completed and the device has rebooted.
    After 10 minutes reboot again by removing the battery whilst powered-on and leave it out for a couple of minutes.
    Leave it again for 10 minutes. You should now have a fully functioning BB!
    Blackberry Best Advice - Back-up weekly
    If I have helped you please check the "Kudos" star on the right >>>>

  • Uncaught exception owner died thread

    Hi all. I have a Curve 9300.<br><br>I can't receive calls or make calls. My green+red phone buttons don't work. I regularly get 'Uncaught exception ApplicationRegistry(hexadecimal code here).waitFortimeout<br><br>Sometimes the message goes on about 'owner died thread...'<br><br>Help?<br>Thanks all.<br>

    Hi there,
    It sounds to me like you have some software issues and unfortunately it can be difficult to know exactly what the cause is. What I would recommend in this case is reloading the device software using the following steps:
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/How-To-Reload-Your-Operating-S...
    And just in case the problem has to do with a corrupted database, when restoring your data, I would suggest using a selective restore where you only restore the databases you need (e.g. messages, address book, etc.).
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • Application won't open. I keep getting an error Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Item to be removed is not in the menu in the first place'

    I'm trying to open this application called Embrilliance. I keep getting and error and the application quits and won't open. I'm using OS Yosemite. I have the same program downloaded on my boyfriend's computer and he's also using OS Yosemite and the application works just fine.
    Here's the full error message:
    Process:               Embrilliance [782]
    Path:                  /Applications/Embrilliance.app/Contents/MacOS/Embrilliance
    Identifier:            com.britonleap.Embrilliance
    Version:               1.136 (1.136)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           Embrilliance [782]
    User ID:               501
    Date/Time:             2014-11-27 13:06:06.763 -0500
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        4DF271F8-2E17-B455-4F0F-0273ED7AC67A
    Sleep/Wake UUID:       2845239D-1DF0-424E-80D7-2312B52C05DE
    Time Awake Since Boot: 3300 seconds
    Time Since Wake:       280 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BREAKPOINT (SIGTRAP)
    Exception Codes:       0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Item to be removed is not in the menu in the first place'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x962f9343 __raiseError + 195
    1   libobjc.A.dylib                     0x95a06a2a objc_exception_throw + 276
    2   CoreFoundation                      0x962f91ca +[NSException raise:format:arguments:] + 138
    3   Foundation                          0x99e142b1 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 118
    4   AppKit                              0x94bc3526 -[NSMenu removeItem:] + 303
    5   Embrilliance                        0x000b84e5 _ZNSt15underflow_errorD0Ev + 667821
    6   Embrilliance                        0x000b8eeb _ZNSt15underflow_errorD0Ev + 670387
    7   Embrilliance                        0x000d6599 _ZNSt15underflow_errorD0Ev + 790881
    8   AppKit                              0x950ea34d -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1312
    9   AppKit                              0x94ba6917 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 56
    10  AppKit                              0x94b9a851 loadNib + 462
    11  AppKit                              0x9518b996 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 330
    12  AppKit                              0x94b99e4b -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 273
    13  AppKit                              0x94b99bb5 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 428
    14  AppKit                              0x94b94da0 NSApplicationMain + 690
    15  Embrilliance                        0x00011460 Embrilliance + 66656
    16  Embrilliance                        0x00002ed5 Embrilliance + 7893
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x962f9cd7 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   com.apple.CoreFoundation       0x962f9659 __raiseError + 985
    2   libobjc.A.dylib               0x95a06a2a objc_exception_throw + 276
    3   com.apple.CoreFoundation       0x962f91ca +[NSException raise:format:arguments:] + 138
    4   com.apple.Foundation           0x99e142b1 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 118
    5   com.apple.AppKit               0x94bc3526 -[NSMenu removeItem:] + 303
    6   com.britonleap.Embrilliance   0x000b84e5 0x1000 + 750821
    7   com.britonleap.Embrilliance   0x000b8eeb 0x1000 + 753387
    8   com.britonleap.Embrilliance   0x000d6599 0x1000 + 873881
    9   com.apple.AppKit               0x950ea34d -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1312
    10  com.apple.AppKit               0x94ba6917 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 56
    11  com.apple.AppKit               0x94b9a851 loadNib + 462
    12  com.apple.AppKit               0x9518b996 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 330
    13  com.apple.AppKit               0x94b99e4b -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 273
    14  com.apple.AppKit               0x94b99bb5 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 428
    15  com.apple.AppKit               0x94b94da0 NSApplicationMain + 690
    16  com.britonleap.Embrilliance   0x00011460 0x1000 + 66656
    17  com.britonleap.Embrilliance   0x00002ed5 0x1000 + 7893
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x966628d2 kevent64 + 10
    1   libdispatch.dylib             0x91f5273f _dispatch_mgr_invoke + 245
    2   libdispatch.dylib             0x91f523a2 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x96661e6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97ce736d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x97ce4eea start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib         0x96661e6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97ce736d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x97ce4eea start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib         0x96661e6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97ce736d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x97ce4eea start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib         0x96661e6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97ce736d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x97ce4eea start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib         0x96661e6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x97ce736d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x97ce4eea start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x026f7370  ecx: 0x00000000  edx: 0x00000000
      edi: 0x962f928e  esi: 0x03865800  ebp: 0xbfffd048  esp: 0xbfffd040
       ss: 0x00000023  efl: 0x00000282  eip: 0x962f9cd7   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x09e98000
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
        0x1000 -   0x924ff7 +com.britonleap.Embrilliance (1.136 - 1.136) <15C51CA3-BD47-3F07-B2BB-E93CCCF83587> /Applications/Embrilliance.app/Contents/MacOS/Embrilliance
      0xe8c000 -   0xe8cfff  com.apple.quartzframework (1.5 - 1.5) <6D85B29E-D684-3DDE-8F02-D292D86A014F> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
      0xe8f000 -  0x1402ff7  com.apple.QuartzComposer (5.1 - 325) <BBF0AE36-52FB-36FC-AF41-493A2ECA0A9E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x1669000 -  0x1713ff7  com.apple.PDFKit (3.0 - 3.0) <951B630D-691F-33C0-A8CB-1B4FC86C0128> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x1764000 -  0x178aff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <5712F712-4A1C-35BF-AE1D-F55DA1D9877D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x17a8000 -  0x1a33fff  com.apple.imageKit (2.6 - 838) <F8830E45-BD83-3E23-BB81-376F7DBC49D7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x1bdb000 -  0x1cc2fff  com.apple.QuickLookUIFramework (5.0 - 675) <B85FDA00-F7AD-31A9-955D-67F70B3E2066> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x1d45000 -  0x1d48fff  com.apple.AppleSystemInfo (3.0 - 3.0) <1530F7BC-4F0A-3827-B113-EA6A1899CE4A> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x1d4e000 -  0x1dd8ff3  com.apple.CorePDF (4.0 - 4) <DA26FFBC-901A-3EF5-AF2F-9699683CB185> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x1e19000 -  0x1e78ffb  com.apple.QuickLookFramework (5.0 - 675) <56D079F9-5BA5-3C34-A074-E61A003CBA41> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x1eaf000 -  0x1eb9fff  com.apple.DisplayServicesFW (2.9 - 372.1) <01C3D99D-7F75-3401-95E8-5175E028EE21> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x1ec3000 -  0x1f1bff3  com.apple.ImageCaptureCore (6.0 - 6.0) <C44A39AC-CE81-3447-A860-DD01B13AA8BB> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x4771000 -  0x47b3ff3  com.apple.CloudDocs (1.0 - 280.1.2) <0F6DAB87-5A29-38A4-9D39-EA299E06BA13> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
    0x9ae7000 -  0x9ae7ffb +cl_kernels (???) <A90883E7-9ABE-4DB2-9A37-DCF826162CA1> cl_kernels
    0x9af6000 -  0x9af6ff9 +cl_kernels (???) <C7D9B835-EF6A-4125-B6EA-0935E7D0EADC> cl_kernels
    0x9af8000 -  0x9be3ff7  unorm8_bgra.dylib (2.4.5) <92A32497-932A-3966-91AD-DEA4CA456A5A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x8fe3d000 - 0x8fe70e03  dyld (353.2.1) <EBFF7998-58E8-32F5-BF0D-9690278EC792> /usr/lib/dyld
    0x90008000 - 0x90027ffb  libresolv.9.dylib (57) <C2C3810A-A45E-3375-B41D-6E1BECE1BA3C> /usr/lib/libresolv.9.dylib
    0x90028000 - 0x90043ff7  com.apple.CFOpenDirectory (10.10 - 187) <12F3D599-88CE-3952-8987-7F6CEA2A809A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x90044000 - 0x9043aff3  com.apple.CoreGraphics (1.600.0 - 772) <0D322365-219E-3D67-96BB-2B2416ACB4F5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9043b000 - 0x90443fff  libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib
    0x90444000 - 0x90736ffb  com.apple.CoreImage (10.0.33) <75B23F45-8D99-3521-89AE-AF2AF4487096> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x90737000 - 0x9074afff  com.apple.ProtectedCloudStorage (1.0 - 1) <0A330FB7-44EE-359F-BAB7-48351AACD305> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x9074b000 - 0x9074bfff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <64ED443E-25D5-3A2C-A028-0D0C7FAF57C6> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9074c000 - 0x9074eff3  com.apple.EFILogin (2.0 - 2) <414F4023-49B5-3FB8-8778-55D4025EB6E8> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x916f1000 - 0x9172dff3  com.apple.RemoteViewServices (2.0 - 99) <2839C2F1-88DA-3843-87BF-441A374A8967> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9172e000 - 0x9176bff7  libsystem_network.dylib (411) <4D5BCDE3-5155-3D97-84C5-778D56A5122A> /usr/lib/system/libsystem_network.dylib
    0x9176c000 - 0x91863fff  libFontParser.dylib (134) <95F8F2D1-B28D-3687-95A9-45033FEE0504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x91aef000 - 0x91b48ffb  libAVFAudio.dylib (118.3) <65762748-F772-3959-8D14-197AFB778132> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x91b4a000 - 0x91b4cffb  libRadiance.dylib (1231) <2F86BE82-404D-335C-B83E-F71D3C4969B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x91b4d000 - 0x91b68ff3  com.apple.openscripting (1.4 - 162) <EB1D1BA6-C0B0-3D3B-AE54-676324FFF3E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91b69000 - 0x91b82fff  libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib
    0x91bb3000 - 0x91d3effb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <44BCEAB8-306D-307F-92C8-6656F3578220> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91d3f000 - 0x91d5cfff  libCRFSuite.dylib (34) <781A92EF-410E-39B2-953D-FEE12748D834> /usr/lib/libCRFSuite.dylib
    0x91d5d000 - 0x91e5dff7  com.apple.LaunchServices (644.12 - 644.12) <4C578D41-6004-38F8-A0DF-81B15BA3864E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91e5e000 - 0x91e67fff  libGFXShared.dylib (11.0.7) <AFC7CCD1-D935-3968-8CE3-303C13354F2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x91e68000 - 0x91efdff3  libsystem_c.dylib (1044.1.2) <819FD4E2-3B29-38F0-AC5C-BEE865489F5F> /usr/lib/system/libsystem_c.dylib
    0x91f4e000 - 0x91f75fff  libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib
    0x91f76000 - 0x91fe1ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x91fe2000 - 0x91fe6ffb  libcache.dylib (69) <55501A00-AF64-3554-8F46-8D5AFEDEC332> /usr/lib/system/libcache.dylib
    0x91fe7000 - 0x91fe9fff  libsystem_configuration.dylib (699.1.5) <CDD8D1DA-3414-3A19-B340-EA116D52EA21> /usr/lib/system/libsystem_configuration.dylib
    0x91fea000 - 0x92019ff7  com.apple.DictionaryServices (1.2 - 229) <1F5C35C7-67AA-30A0-A366-EB4B361152A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9201a000 - 0x9202afff  libGL.dylib (11.0.7) <2AF64D8C-3447-3C85-B4A1-77F03456E402> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9202b000 - 0x9202bfff  com.apple.Cocoa (6.8 - 21) <6AF80DDB-C28E-36FF-BC11-D7D561AC52A9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9203a000 - 0x920b0ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B6F346D2-BF88-3925-B962-E59267FA2268> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x920b1000 - 0x9211dffb  com.apple.datadetectorscore (6.0 - 396.1) <77C29022-34D1-3556-95F6-FDBE4576CAF9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9211e000 - 0x9219bff3  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <C3A9E799-0B67-3292-AF44-43CCA846C169> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9219c000 - 0x92292ff7  libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib
    0x92296000 - 0x922abff3  libCGInterfaces.dylib (294.1) <631D5E39-4815-3BDA-BD16-B34D5EB36240> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Libraries/libCGInterfaces.dylib
    0x922ac000 - 0x9233efff  com.apple.CoreSymbolication (3.1 - 56072) <BADFFEF1-5CD8-37BC-B8FD-7C955EF0D0A1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9233f000 - 0x92345ff7  libsystem_networkextension.dylib (167.1.10) <FC20E3AD-A53D-3346-AC71-829E82832AE8> /usr/lib/system/libsystem_networkextension.dylib
    0x92346000 - 0x9235ffff  com.apple.Kerberos (3.0 - 1) <92735F11-CF1C-3FA6-8682-9A30AC9E2651> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92360000 - 0x92361fff  com.apple.TrustEvaluationAgent (2.0 - 25) <28BBD931-EF7C-3753-B50E-6568F4075086> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x923d3000 - 0x92473fff  com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92474000 - 0x926f9fff  com.apple.QuickTime (7.7.3 - 2890) <34289D2B-07CC-3D12-8F32-6F97D96DEE81> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x926fa000 - 0x926fafff  libOpenScriptingUtil.dylib (162) <9872C464-DF90-37C2-9871-8A3F53C615EC> /usr/lib/libOpenScriptingUtil.dylib
    0x926fb000 - 0x92a53fff  libmecabra.dylib (666.1) <540C2537-35BD-3909-B98D-66783A3FB334> /usr/lib/libmecabra.dylib
    0x92a54000 - 0x92b40fe7  libvMisc.dylib (512) <56B7DE45-36B1-32BE-B823-DB14F315EEB9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92b41000 - 0x92c57ff3  com.apple.desktopservices (1.9 - 1.9) <01A07F2E-9F9A-3847-AB11-C550827B3778> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92d75000 - 0x92d7efff  com.apple.AppleSRP (5.0 - 1) <41C48FA8-C249-3800-A551-7F4AFA3E723F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x92d83000 - 0x92fffff3  com.apple.security (7.0 - 57031.1.35) <4721C22E-D6C2-3202-B80D-5E67169466D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93000000 - 0x93132ffb  com.apple.UIFoundation (1.0 - 1) <00A59CFF-A217-3998-B22E-6E452278A302> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x93133000 - 0x93140fff  com.apple.OpenDirectory (10.10 - 187) <94A3ED17-CD64-3D4A-8470-69C937CABF50> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93141000 - 0x93156ffb  com.apple.MultitouchSupport.framework (260.30 - 260.30) <2E28AF1C-AC6C-364F-B181-C5926A7F5A4D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x93157000 - 0x931acff7  com.apple.htmlrendering (77 - 1.1.4) <B85A63B9-C9DD-3ECC-B5DC-E12533C7FDF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931ad000 - 0x93216ff7  libcorecrypto.dylib (233.1.2) <F188C1A7-E88F-3EC5-A6AA-22C02E3F0C93> /usr/lib/system/libcorecrypto.dylib
    0x932a6000 - 0x932a6fff  com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x932a7000 - 0x93398ffb  libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib
    0x93399000 - 0x9339cfff  libdyld.dylib (353.2.1) <6533C0BC-6FE5-3E43-A44D-EF2193978EC0> /usr/lib/system/libdyld.dylib
    0x9339d000 - 0x933baffb  com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x933bb000 - 0x933bffff  libCoreVMClient.dylib (79) <85CBF1F3-3CE1-304F-88DF-15608C9A2367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x93d44000 - 0x93da4fff  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <1844FC5A-83E0-3031-B68B-9F36197AAACB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93da5000 - 0x93da7fff  com.apple.loginsupport (1.0 - 1) <47A71885-BB14-3DB8-AE19-F74ABA120290> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x93da8000 - 0x940a6ff7  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <C18EC809-6E67-3D9C-82D5-34170A81254C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x940a7000 - 0x940fdfff  libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib
    0x940fe000 - 0x94138ff7  com.apple.DebugSymbols (115 - 115) <D01FFA10-1734-31C5-B5A1-9CB61463FC15> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x94139000 - 0x94146ff7  libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib
    0x941e9000 - 0x9432dfff  com.apple.ImageIO.framework (3.3.0 - 1038) <98EC2248-5270-3CB5-84FD-CD225A9875D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9432e000 - 0x94345ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <D3051132-DF37-3D20-9875-9541CE2641BB> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x94346000 - 0x94352ff7  libkxld.dylib (2782.1.97) <779DF7F9-9B34-3FD9-9BC1-482CDA59E17A> /usr/lib/system/libkxld.dylib
    0x94353000 - 0x94353fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <96675103-6E3D-326A-83C0-82D3A34C3A1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9440e000 - 0x9441cff3  libxar.1.dylib (254) <D7C4FDEB-61AA-3FC1-8B7B-0AE3A3A64492> /usr/lib/libxar.1.dylib
    0x9441d000 - 0x944a4fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <8DD52AC8-238C-3E5C-ADBB-ABDA770D708A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x944a5000 - 0x944f3ff7  libcurl.4.dylib (83.1.2) <F5D7DC22-1308-34FD-8A4E-A4DC3F8351E4> /usr/lib/libcurl.4.dylib
    0x947ad000 - 0x947b5fff  com.apple.CoreServices.FSEvents (1210 - 1210) <FC372799-6E8E-3290-9816-6981D39BC9D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x947b6000 - 0x947c3ff7  com.apple.ProtocolBuffer (1 - 225.1) <E5744DE6-B3FC-3289-9E71-98E88DECE545> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x947c4000 - 0x94b46ff7  com.apple.VideoToolbox (1.0 - 1562.19) <0DF7B33E-B8BE-385E-931A-B7E7ECF16B7B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x94b47000 - 0x94b87fff  libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib
    0x94b88000 - 0x94b8cffb  libGIF.dylib (1231) <9DE811E6-6151-32B2-8C89-AD97EC7815B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94b8d000 - 0x94b8dfff  com.apple.Carbon (154 - 157) <5A078967-8437-3721-A6B1-70CC00461D7B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94b8e000 - 0x94b91ffb  libutil.dylib (38) <B5A16C6B-A79E-3504-BDA6-64A063F6612D> /usr/lib/libutil.dylib
    0x94b92000 - 0x9577efff  com.apple.AppKit (6.9 - 1343.16) <FC30E524-3BC6-3220-BBB5-1512A4ED5E7B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9577f000 - 0x957bfffb  libGLImage.dylib (11.0.7) <1F2F2EFE-1EFA-398F-80D6-8AC6EA5160DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x957c0000 - 0x957d7ff3  libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x957d8000 - 0x95821ffb  libFontRegistry.dylib (134) <023BB8A2-8BBA-30DC-B0C2-A5F0AE3667D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95822000 - 0x95826fff  com.apple.CommonPanels (1.2.6 - 96) <955375E6-2416-38E1-AFC6-477827119329> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95827000 - 0x9582fff7  libCGCMS.A.dylib (772) <C556A973-97EF-353D-AA9A-82483BDB481C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x95884000 - 0x959edff7  com.apple.avfoundation (2.0 - 889.10) <BC1712A8-FBDC-35A4-997C-2A0CA4296E8E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x959ee000 - 0x959fbff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <DD10F01B-45E7-31A0-A19B-2AEEB689C6C4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x959fc000 - 0x95bd82ef  libobjc.A.dylib (646) <EF789AF0-508F-3D49-A988-376CE2E1107C> /usr/lib/libobjc.A.dylib
    0x95bd9000 - 0x95c19fff  com.apple.Symbolication (1.4 - 56045) <BE1C4846-DA11-365D-9B46-3FF130401839> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x95c1a000 - 0x95c1bfff  libSystem.B.dylib (1213) <77FA0B3F-4412-31F6-A798-21D068AE16C3> /usr/lib/libSystem.B.dylib
    0x95c1c000 - 0x95c2ffff  com.apple.CoreBluetooth (1.0 - 1) <DF406F6F-C173-3598-8785-8A2014F770EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x95c30000 - 0x95c59fff  libRIP.A.dylib (772) <0B645C55-5450-320B-BF84-408B66A29364> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x95c5a000 - 0x95d25fff  com.apple.DiscRecording (9.0 - 9000.4.1) <490CDFC5-B1BF-36CA-AB7E-FEAF99BF272A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95d26000 - 0x95d29ff7  com.apple.help (1.3.3 - 46) <FDF183E4-3B95-3CBD-A390-2536C8E7E258> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95d2a000 - 0x95d2bfff  libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib
    0x95d2c000 - 0x95d2cfff  com.apple.CoreServices (62 - 62) <FF296ED2-0F90-3055-BBE4-7BF9E42322EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95d2d000 - 0x95d56ff7  libsystem_info.dylib (459) <4F7A7111-7F0D-3891-9DC9-41F5D79949FE> /usr/lib/system/libsystem_info.dylib
    0x95d57000 - 0x95d8afe3  libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib
    0x95d8b000 - 0x95d9dfff  com.apple.Sharing (328.3 - 328.3) <460DD833-B33A-369E-A5EF-B21D5AA231EF> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x95d9e000 - 0x95db2fff  com.apple.ImageCapture (9.0 - 9.0) <4B84B5D5-A5F3-3B35-93CE-568A73486B92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95db3000 - 0x95db3fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <180BFBE5-2218-3A6F-A1B2-CCA1C92B66F7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95db4000 - 0x95dbbfff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95dbc000 - 0x95e19ff3  com.apple.print.framework.PrintCore (10.0 - 451) <2563665B-7B7F-3B8A-83B1-E5AC8D389909> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95e1a000 - 0x95e6fff3  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <F5A586C3-A440-3E0E-966A-7841A182E5B2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95ea5000 - 0x95eb6ff3  libsystem_coretls.dylib (35.1.2) <87AE2CBB-A397-3392-A152-02AEA6D194D6> /usr/lib/system/libsystem_coretls.dylib
    0x95eb7000 - 0x95ec2ff7  com.apple.NetAuth (5.0 - 5.0) <D6C31218-47E4-3553-9208-D1091A81044E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x95ec3000 - 0x95fd9ff7  com.apple.CoreText (352.0 - 454.1) <02F310BE-E185-328C-A461-6D6B762D4A6D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x95fda000 - 0x95fe6ff7  libcsfde.dylib (471) <36D1C779-E345-3B11-84C1-B13E7504335B> /usr/lib/libcsfde.dylib
    0x95fe7000 - 0x9601bffb  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <F527DB82-0D3F-359E-979B-951DFF46D45C> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x96051000 - 0x9617eff7  com.apple.coreui (2.1 - 305) <8D2978A1-8152-32CB-B265-4C923FDF3017> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9617f000 - 0x96532fff  com.apple.CoreFoundation (6.9 - 1151.16) <2F4FE1E8-D09B-3C62-B884-7A41111F4FBB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96533000 - 0x96546fff  libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib
    0x96547000 - 0x965ecfff  com.apple.Metadata (10.7.0 - 916.1) <C1EAE5EA-C25B-337C-A0DD-82F694FDD140> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x965ed000 - 0x96640ff7  com.apple.HIServices (1.22 - 519) <5B54AB76-C487-367B-ACD5-2AF6BC85E1B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96641000 - 0x96647ff7  com.apple.MediaAccessibility (1.0 - 61) <81E9530E-882C-313C-A4D5-2F43EB569E4F> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x96648000 - 0x96667fff  libsystem_kernel.dylib (2782.1.97) <9F86CA37-93FC-31F0-8ACC-53D244AF9EC2> /usr/lib/system/libsystem_kernel.dylib
    0x96668000 - 0x967d9ffb  libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x967da000 - 0x96835fff  com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x96836000 - 0x9683effb  com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9683f000 - 0x96865ff7  com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x96866000 - 0x9686dff3  libunwind.dylib (35.3) <29D9343F-9A0A-3535-B0AE-E7CC761D95EE> /usr/lib/system/libunwind.dylib
    0x9686e000 - 0x96885ff3  com.apple.AppContainer (4.0 - 238) <6D233F8C-F8D1-365F-B678-E0B75A6E6C15> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x96886000 - 0x9688eff7  com.apple.icloud.FindMyDevice (1.0 - 1) <A0C38380-8B46-39CF-A0A1-27ABDAD1D574> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x9688f000 - 0x96941fff  libCoreStorage.dylib (471) <3E1DA770-7958-3243-B0D3-126E71E36BAA> /usr/lib/libCoreStorage.dylib
    0x96942000 - 0x96947ff7  libcompiler_rt.dylib (35) <6630682F-AB76-3E55-BE51-0A3E61B6CFC2> /usr/lib/system/libcompiler_rt.dylib
    0x96948000 - 0x9694cffb  com.apple.IOSurface (97 - 97) <ADB57CD2-455A-317C-818E-6379BF427D10> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9694d000 - 0x969c0ffb  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <F46A7092-ADC6-3596-B046-8026F2814D8D> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x969c1000 - 0x96ad4fff  com.apple.MediaControlSender (2.0 - 215.10) <9A59F1DE-E9B6-3A56-84A1-F3F9DC66189B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x96ad5000 - 0x96ad7ff7  libsystem_sandbox.dylib (358.1.1) <12A90EA1-A218-3B6B-A441-E1A8F866FA44> /usr/lib/system/libsystem_sandbox.dylib
    0x96ad8000 - 0x96b4efff  com.apple.securityfoundation (6.0 - 55126) <64E4CE02-8BE6-3408-99A5-23E5CF7545BC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96c66000 - 0x96c66fff  liblaunch.dylib (559.1.22) <2FDDB7A5-C022-3C40-A263-1DC74F0B446D> /usr/lib/system/liblaunch.dylib
    0x96c67000 - 0x96df6ff3  libsqlite3.dylib (168) <C3F78985-C19B-3320-9F71-543969632128> /usr/lib/libsqlite3.dylib
    0x96df7000 - 0x96e6efff  com.apple.CoreUtils (1.0 - 101.1) <7169E4D1-0771-36AD-85C8-60CF37FFF16E> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x96e6f000 - 0x96e6ffff  libkeymgr.dylib (28) <06DDCEF8-EB84-3F68-9E19-FD1A12B764FD> /usr/lib/system/libkeymgr.dylib
    0x97784000 - 0x977c7fff  libGLU.dylib (11.0.7) <3519CD46-386A-3702-A5EE-AE59923C5AA7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x977c8000 - 0x977f4fff  com.apple.ChunkingLibrary (2.1 - 163.1) <2B0CBB85-EF91-351A-8750-A185996E4CDB> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x977fe000 - 0x9780dff3  com.apple.opengl (11.0.7 - 11.0.7) <C4738E5F-C178-3A01-B941-C638E6A14D7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9780e000 - 0x97848fff  com.apple.MediaKit (16 - 757) <430EC569-B083-3608-B91F-3EC6B6065519> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x97849000 - 0x97878fff  com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97879000 - 0x9787cfff  libextension.dylib (55.1) <6FF35E52-648C-3F90-932C-5EB9FFEEEB49> /usr/lib/libextension.dylib
    0x9787d000 - 0x9787efff  libsystem_blocks.dylib (65) <5D98F022-E863-31D4-8ADE-D53B2AE0D331> /usr/lib/system/libsystem_blocks.dylib
    0x9787f000 - 0x97885ff3  libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib
    0x97886000 - 0x9788ffff  com.apple.CommonAuth (4.0 - 2.0) <88D8A3D8-5F27-3545-8CD2-456FFDE5383D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x97890000 - 0x97c78ff7  libLAPACK.dylib (1128) <4E3D1289-2C98-3E53-BB8D-AD911357FF66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x97c79000 - 0x97ca5ffb  libsandbox.1.dylib (358.1.1) <A62AE9BC-7FF4-33D1-AB30-7497832770E7> /usr/lib/libsandbox.1.dylib
    0x97ca6000 - 0x97cd9fff  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <103A5EA0-9B75-3B23-BE72-C4DD52744A6A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x97cda000 - 0x97ce3fff  com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97ce4000 - 0x97cecfff  libsystem_pthread.dylib (105.1.4) <D90BD4F4-8DFA-3683-9C26-313D2F4F8C41> /usr/lib/system/libsystem_pthread.dylib
    0x97ced000 - 0x97d27fff  com.apple.LDAPFramework (2.4.28 - 194.5) <AB471BFC-FDB3-347E-ABC0-BB7836662278> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97d28000 - 0x97e9dff7  com.apple.QTKit (7.7.3 - 2890) <16C43187-DFFE-3BB3-AA2C-741FBEBB5585> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x97e9e000 - 0x983f9ffb  com.apple.MediaToolbox (1.0 - 1562.19) <6BAB878B-526B-314F-824B-95D9D2FED1D2> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x983fa000 - 0x98414ff7  liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib
    0x98415000 - 0x98729fef  com.apple.CoreAUC (211.0.0 - 211.0.0) <78C567D8-532D-3A08-BF7D-0C25A859F64A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9872a000 - 0x9873aff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9873b000 - 0x98761ffb  libxpc.dylib (559.1.22) <CB6B442F-8BE4-37B6-9A00-4753BC1C368C> /usr/lib/system/libxpc.dylib
    0x98762000 - 0x98785ffb  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <FA330995-5E22-352D-8089-6F4EE2E178A5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x98935000 - 0x989cffff  com.apple.ColorSync (4.9.0 - 4.9.0) <091CDCEC-1B25-3FE7-94C2-8AEFA6564E95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x989d0000 - 0x98e03ff3  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <EF92C25B-3E33-379F-A862-75C2FCA8B386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x98e04000 - 0x98e0fff7  com.apple.CrashReporterSupport (10.10 - 629) <BB92BB57-6F2F-3348-BEF4-58036DF40FA4> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x98e10000 - 0x98e17fff  com.apple.XPCService (2.0 - 1) <9A59D63D-446A-33A4-BB21-56E42417DA93> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x98e18000 - 0x98e46ff7  libarchive.2.dylib (30) <8758D35F-ADF8-30F6-8EB2-9B852876EAC8> /usr/lib/libarchive.2.dylib
    0x98e47000 - 0x992edff7  com.apple.JavaScriptCore (10600 - 10600.1.17) <51DEC6FC-6F6F-39F2-A286-CCAA88285016> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x992ee000 - 0x994e4fff  libicucore.A.dylib (531.30) <BD09E200-FF42-3E9D-814C-0BC8F2C0EAC9> /usr/lib/libicucore.A.dylib
    0x994e5000 - 0x994f1ff3  libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib
    0x994f2000 - 0x99531fff  com.apple.NavigationServices (3.8 - 215.1) <46D8B66D-CB59-36F5-BD26-FD8309337BB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x99532000 - 0x99534fff  libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib
    0x99535000 - 0x99546fff  libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib
    0x99547000 - 0x9956afff  libJPEG.dylib (1231) <33D03A5B-CED8-3FDC-8892-723DD6E423FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9956b000 - 0x9956fffb  com.apple.TCC (1.0 - 1) <BFA66EA1-2839-3648-80F6-96AE136A6838> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x99570000 - 0x999abfeb  com.apple.vImage (8.0 - 8.0) <56F6B317-9D70-3DC5-9868-BB6D7CB6E55D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x999ac000 - 0x999deff7  com.apple.GSS (4.0 - 2.0) <36CBBD76-19AC-333E-AB52-A93800ABC89A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x999df000 - 0x99a12fff  com.apple.CoreServicesInternal (221.1 - 221.1) <045D0E8B-6935-3A11-B56B-45FF9A5474FF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x99a13000 - 0x99a6effb  libTIFF.dylib (1231) <14F5E31A-4ABC-3DF7-AB85-9DB406D3613C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x99a6f000 - 0x99d0aff3  com.apple.RawCamera.bundle (6.00 - 761) <DC69A768-9B78-3B56-94AD-3A3E5965C8A3> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x99d0b000 - 0x9a06affb  com.apple.Foundation (6.9 - 1151.16) <76BF64BB-34C4-3409-BB6F-CAACDEE7681A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9a06b000 - 0x9a06cfff  liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib
    0x9a06d000 - 0x9a06ffff  com.apple.securityhi (9.0 - 55006) <E278B0FD-7303-381A-BDBC-C590C71EE86E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9a070000 - 0x9a082ff7  libsasl2.2.dylib (193) <B5813595-A89D-39D4-BB06-F6013D3BD98C> /usr/lib/libsasl2.2.dylib
    0x9a083000 - 0x9a08efff  com.apple.AppSandbox (4.0 - 238) <D05DB10E-06C7-3220-B63A-FDD1AFCAA30B> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x9a08f000 - 0x9a093fff  libheimdal-asn1.dylib (398.1.2) <71FCB9F7-A330-3C02-89F3-B483B1C67E54> /usr/lib/libheimdal-asn1.dylib
    0x9a0b7000 - 0x9a108fff  com.apple.opencl (2.4.2 - 2.4.2) <33B19D84-C463-3762-B1AB-C5CB8F7DC87F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a109000 - 0x9a109fff  libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib
    0x9a10a000 - 0x9a189fff  com.apple.SystemConfiguration (1.14 - 1.14) <89A67A1E-850F-3ED1-AB7D-9057A5B0FF0D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9a18a000 - 0x9a190ff7  libsystem_trace.dylib (72.1.3) <E1985F9C-78FC-3098-8683-81F0DCEE54BB> /usr/lib/system/libsystem_trace.dylib
    0x9a191000 - 0x9a239ff7  com.apple.CoreMedia (1.0 - 1562.19) <ECB3338A-318A-3612-BBC1-11E0E99DB595> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9a23a000 - 0x9a248ff7  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <637E7AB2-1077-319C-A6A2-D0D0F01951BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
    0x9a249000 - 0x9a61fff7  com.apple.HIToolbox (2.1.1 - 756) <5204085A-4D56-3430-889F-11C42E43729B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9a620000 - 0x9a62eff7  libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib
    0x9a62f000 - 0x9a669fff  com.apple.AirPlaySupport (2.0 - 215.10) <BA87CB33-2E42-389A-AFC1-0ABEE42C3E38> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x9a66a000 - 0x9a6bdfff  libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib
    0x9a6be000 - 0x9a6c0fff  libCVMSPluginSupport.dylib (11.0.7) <A87C589A-DA64-3D62-8BDE-065784993B1A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9a6c1000 - 0x9a6c6ff7  libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib
    0x9a6c7000 - 0x9a6c9ffb  libCGXType.A.dylib (772) <9F0C0190-2E25-361D-9713-33C3DDADE8F3> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x9a6ca000 - 0x9a6ccffb  libsystem_secinit.dylib (18) <3CBA3BD3-8BA2-358D-BD1A-A1C3DF5D84E6> /usr/lib/system/libsystem_secinit.dylib
    0x9a6cd000 - 0x9a7b6fff  libcrypto.0.9.8.dylib (52) <8BA9026A-18DA-3F45-9850-85DF4378F284> /usr/lib/libcrypto.0.9.8.dylib
    0x9a7b7000 - 0x9a7feff3  com.apple.AppleJPEG (1.0 - 1) <C14A2B49-A664-3EDE-9B9B-6A678ED7F8DE> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x9a8ba000 - 0x9a90bfff  libcups.2.dylib (408) <08C5D411-533C-345A-B820-092C96215F2E> /usr/lib/libcups.2.dylib
    0x9a90c000 - 0x9a95ffff  com.apple.CoreMediaIO (601.0 - 4749) <96E6B0EE-1251-39BA-A186-0D2DA82CB69C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9a960000 - 0x9aa64ff7  libJP2.dylib (1231) <77B25D2E-F9DE-3565-894A-970DE207B0EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9aa65000 - 0x9acf8ff7  com.apple.CoreData (110 - 526) <C2C79A0B-70B1-3D88-951D-1C19D35B78E1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9acf9000 - 0x9ad03ffb  com.apple.audio.SoundManager (4.2 - 4.2) <4312D0A7-4B6F-3A1E-9A47-24C6E8C65E51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9ad04000 - 0x9adb3ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <5BCD60EC-DAD3-369F-B836-49086A6A6D39> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x9adb4000 - 0x9aec0fe3  libvDSP.dylib (512) <54403134-29AE-3806-89D7-2CBA7B455736> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9aec1000 - 0x9b0c5ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <8485A7F6-5217-355E-8501-385C557A97EA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9b0c6000 - 0x9b1b6ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <2C988912-3B5E-3E13-A172-01221AAC91E6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9b1b7000 - 0x9b22bfff  com.apple.Heimdal (4.0 - 2.0) <5D2BE254-CFCD-3A15-9A89-1CBBDE0FF265> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9b22c000 - 0x9b235fff  libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib
    0x9b236000 - 0x9b23efeb  libcldcpuengine.dylib (2.4.5) <7DB7526E-F292-3C24-B78A-BB7C2C9038BC> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x9b23f000 - 0x9b242fff  libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib
    0x9b243000 - 0x9b2cfff3  com.apple.PerformanceAnalysis (1.0 - 1) <CB175B15-8AA3-3ECA-88ED-E561D7722DFB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9b2d0000 - 0x9b34afff  com.apple.ApplicationServices.ATS (360 - 375) <7E075657-314E-3130-97A7-AFD826000C7B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9b34b000 - 0x9b34dfff  com.apple.SecCodeWrapper (4.0 - 238) <5F089303-4DBE-36D2-84B3-F53CDA3718AC> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x9bed8000 - 0x9c09cff3  com.apple.QuartzCore (1.10 - 361.11) <9CED60CF-9B7F-3288-A7E9-3AE087F9E076> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9c09d000 - 0x9c101ff7  com.apple.AE (681 - 681) <EEE62980-421B-33BD-BB88-6BDE269A3060> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9c102000 - 0x9c1ccfff  com.apple.backup.framework (1.6.1 - 1.6.1) <82A5ADA6-6434-3801-AE63-4C56ADC93B28> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9c1cd000 - 0x9c1f3ff3  libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib
    0x9c1f4000 - 0x9c21efff  libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib
    0x9c21f000 - 0x9c23eff7  com.apple.GenerationalStorage (2.0 - 209.11) <34CF76B2-8052-359D-816D-092608FB6919> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9c23f000 - 0x9c242fff  com.apple.xpc.ServiceManagement (1.0 - 1) <942B9491-B97C-36DB-A9F0-3EA3273FCD2C> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9c243000 - 0x9c244fff  libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9c245000 - 0x9c25cfff  libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib
    0x9c25d000 - 0x9c283ffb  libPng.dylib (1231) <A9ACFC7E-9F25-3F15-AFAB-C74C3DAA1D06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9c284000 - 0x9c28bfff  libMatch.1.dylib (24) <428CD037-5261-39A6-83EE-A7D9ABF446EB> /usr/lib/libMatch.1.dylib
    0x9c28c000 - 0x9c295ff7  libsystem_notify.dylib (133.1.1) <B8503E99-214B-3AC3-A7CA-CC837ABD7B25> /usr/lib/system/libsystem_notify.dylib
    0x9c296000 - 0x9c333fff  com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9c334000 - 0x9c339fff  com.apple.print.framework.Print (10.0 - 265) <7C3984BB-8337-3B90-A414-17C181A45744> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9c33a000 - 0x9c33cfff  libquarantine.dylib (76) <9ADD861F-A66E-3AD1-A77E-C622E91BD203> /usr/lib/system/libquarantine.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 1211
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=202.6M resident=98.0M(48%) swapped_out_or_unallocated=104.7M(52%)
    Writable regions: Total=84.0M written=9364K(11%) resident=15.6M(19%) swapped_out=0K(0%) unallocated=68.4M(81%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Activity Tracing                   2048K
    CG backing stores                   800K
    CG image                            116K
    CG shared images                    240K
    CoreAnimation                       512K
    CoreUI image data                    56K
    Foundation                            4K
    Kernel Alloc Once                     4K
    MALLOC                             50.0M
    MALLOC (admin)                       48K
    Memory Tag 242                       12K
    OpenCL                               16K
    Stack                              66.6M
    VM_ALLOCATE                        17.2M
    __DATA                             13.8M
    __IMAGE                             528K
    __LINKEDIT                         45.3M
    __OBJC                             3472K
    __TEXT                            157.3M
    __UNICODE                           544K
    mapped file                       132.3M
    shared memory                         4K
    ===========                      =======
    TOTAL                             490.8M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f38
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Getting an "uncaught exception" error when trying to Scan a document via D-Link DPR-1260 print sever (worked in prior versions of Firefox)

    I'm using the interface (Firmware V1.24) on a D-Link DPR-1260 Print Server, connected to an Epson Printer/Scanner. When I hit the "Scan" button, I get an "uncaught exception" error. This firmware has been working for years (at least back to Firefox 3.x), but no longer works with Firefox V6.0

    Nothing really, but... The firmware runs in a web browser. It's been working fine for years and no longer works since I got the latest version of Firefox. It does, however, still work in IE (V9) so I do have a way to use my existing hardware.
    I tried D-Link and Google search for any information about this, but came up empty. I was hoping that there might be similar problems with other software with Firefox 6.0.2 and someone might have a work-around or there might be a patch coming soon. At the very least, someone associated with Firefox might be interested that they've apparently broken something that used to work.

  • Lost SMS Icon and get error message Uncaught exception Index 20 = 20

    Dear All
    I have lost my SMS Icon and looking at previous forums have carried out the following techniques which do not work
    1. I have gone to Messages - Options - SmS & Email Inboxes - Seperate but this does not solve anything
        Within this step i have switched off phone taken out battery etc...
    2. I have gone to Applications - menu - "show all" but my SMS icon cannot be found
    Just to note even when i go to Messages - View Folder - SMS Inbox .....i get the error message again  
    Uncaught exception Index 20 > = 20
    Anyone able to help ? Would be greatly appreciated.
    Thanks

    You may have already figured out your fix - but yesterday I went thru the same thing with my son's phone.  Overnight he lost his SMS & MMS Icon and was receiving Uncaught Exception Index 28 >= 28.  I called Verizon Tech Support and was told there was a corrupt file in the calendar. 
    We backed up the phone using the Desktop Manager - performed a security wipe and restored his phone. 
    His phone is back up and running as it should be.  Hope this helps.
     Laura

Maybe you are looking for

  • Help me out printing a report

    I'm trying to print a report directly to the printer and it's being hard. To see the report in the screen it's easy but to the printer it always gives an error. Is there a way that i can print to a local printer? I'm trying to set destype to printer

  • How to update a register in an ODS and in a cube

    Hi: I have a regsiter in my ODS, but when his status change in r/3 i have to update the register. When i load the delta it send's me a mistake that i have duplicate registers. How can I avoid thsi mistake instead to update the status, and how do i ma

  • MY ITUNES WONT OPEN?, can anyone help???

    when i double click on my itunes icon to open it wont open, i have reinstalled it about four times and still nothing, anyone got any idea"s?

  • Load/download photos and videos from iMessage

    Hi! Is it possible to load/download all sent and received photos and videos from iMessage during the time, from for example one person? Thank you.

  • Usb error 43

    Port_#0002.Hub_#0004 on the hp touchsmart iq 505. Anyone know whats the problem