Queries with attributes not opening through Citrix.

Hi.
Our users use Citrix to remotely logon to their system. They use SAP GUI 6.20.
When they remotely use Citrix and run BEx (thorugh RRMX), and try to open a query having attributes in the rows, it gives them (eventually us also) multiple errors.
First, a "Program Error Intercepted" window, saying "An unexpected type mismatch error occured in wdbrlog. 1 error is logged". The it asks to type in what we were trying to do.
If we type something, it would take us a new window saying "Run-time error '-2147221499 (80040005)': Fatal Error - Terminating. If we press the OK button underneath, it takes us to another window (saying Microsoft Visual Basic on top and in the body says: "Run-time error '-2147221499 (80040005)", Automation Error : The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call may have executed."
Then it closes the open query window.
Then if we try to open that or any other query, it (as usual) prompt us for the name and password and even if we put the correct name and password, it does not recognize anything. We have to logoff from the Citrix server manually and totally and then only the system works.
We are confused of why this problem should happen and would really appreciate your help.
Thanks.

Hello Isha,
I hope this is not too late.
I am not sure of the ITS version you are using: is it the ITS 6.20 (Standalone) or the Integrated ITS?
Please consider SAP note 1058218.
Let me know if I can help you further.
All the best,
Cristiano

Similar Messages

  • Why is my CD with documents not opening with my MacBook Pro?

    Why is my CD with documents not opening on my MacBook Pro?  I have inserted the CD and keep saying that it is not apple apps.

    I think I'm running iTunes 11.1.2.
    Also, my computer isn't even recognising it - its just saying my USB ports are power surging.
    (Thanks for your help! )

  • PDF download in 3.1 fails with "could not open" error

    Just created a couple interactive reports and was truly dazzled by the functionality. But when I try to download to PDF, Acrobat Reader 8.1.1 errors with msg "... could not open <file> because it's either not a supported file type or because the file has been damaged...."
    No problem with CSV download.
    Is there some special Acrobat plugin that's needed?

    Its true its not required, but the instructions for deploying the war file advise you to use enterprise manager console, which you won't have if you have just got XE or if you have installed a database without Enterprise manager.
    Ideally we need a method of deploying the war file directly
    Step 1: Installing the WAR file
    Place the fop.war file (located in apex_install_directory/utlities/fop) in an accessible location on your local machine. You then follow the directions below or can view the process by running this viewlet.
    Navigate to your OC4J Oracle Enterprise Manager Console eg: http://localhost:8888/em/
    Select the Applications Tab
    Select Deploy Button
    On the "Deploy: Select Archive" page use the option "Archive is present on local host. Upload the archive to the server where Application Server Control is running." Use the file browse to select the fop.war file and click "Next" button
    On the "Deploy: Application Attributes" page set the "Application Name" option to "fop" and clear the "Context Root " option and click "Next" Button
    On the Deploy: Deployment Settings click the "Deploy" button Message was edited by:
    Keith Jamieson

  • The "Open With" does not open to my most CURRENT Lightroom

    I have Lighroom 5, but when I right click on a picture in a file, for example, and say OPEN WITH, it opens with the OLD VERSION of Lighroom--not the current version.  The only way I can make it right is to go to my programs, and open Lighroom from there.  How do I get the OPEN WITH to open with the current version?  Thank you!

    Thanks for the email.  I hadn’t worked in Lightroom for several weeks, then opened Lightroom from the shortcut on the desktop, and after over an hour of working on a photo realized that I was working in the OLD version.  So I deleted the desktop shortcut.  Tonight, my son emailed me a photo of their baby—I right clicked and did the OPEN WITH, and it opened up in the old version.  If I am opening a photo that was sent through an email, I always use OPEN WITH, so I can’t figure out how I can get the OPEN WITH to default to Lightroom 5.  But there has to be a way, because I have to open emailed photos that way.
    Thanks again!
    Diane

  • p tags with attributes not removed from JTextPane

    We are using HTMLEditorKit with JtextPane to create a HTML Document Editor, for our project. [JDK 1.3.1.]
    When we have a simple <p> tag for paragraph in HTML and we start deleting things from end of the document, it works fine. But when we have a <P> tag with attributes like <p align='CENTER'> the delete key deletes the characters but the cursor remains in the line below and doesnot move up as the characters of above para get deleted. The HTML also retains the <p align='CENTER'> tag, which should have been removed. It seems its not able to identify <p> tags with attributes as Html para tags, and so not deleting it.
    How do we solve this without migrating to jdk1.4 ? Please help.

    Usually attributes such as 'align=center' are deleted along with a tag, regardless of whether it is a p tag or another one. But you would have to carefully test what exactly gets deleted because attributes are not only stored with paragraphs. They can exist for single characters and as well come from a style sheet.
    The best is to generate a dump of your document before and after deletion.
    You can use something like the below code (it is not optimized at all and thus could be implemented better but it works) to produce a dump
      public void listElements(Element elem, int indent) {
        int i;
        String is = getIndent(indent);
        String elemName = elem.getName();
        Document elemDoc = elem.getDocument();
        String cont = "";
        String theText = "";
        System.out.println(is + "--start-----");
        System.out.println(is + "Element Name:" + elemName);
        if(elemName.equals(new String("content"))) {
          try {
            theText = elemDoc.getText(
                    elem.getStartOffset(),
                    elem.getEndOffset() - elem.getStartOffset());
            System.out.println(is + "Content: " + theText);
            if(theText.indexOf("\r") > -1) {
              System.out.println(is + " plus \\r");
            if(theText.indexOf("\n") > -1) {
              System.out.println(is + " plus \\n");
          catch (Exception e) {
        listAttributes(elem, indent);
        if(!elem.isLeaf()) {
          for(i=0;i<elem.getElementCount();i++) {
            listElements(elem.getElement(i),indent+2);
        System.out.println(is + "---end----");
      public void listAttributes(Element elem, int indent) {
        Object key;
        String attr;
        String attrName;
        int pos;
        String is = getIndent(indent);
        AttributeSet as = elem.getAttributes();
        Enumeration an = as.getAttributeNames();
        try {
          while(an.hasMoreElements()) {
            key = an.nextElement();
            attrName = key.toString();
            attr = as.getAttribute(key).toString();
            System.out.println(is + "Attribute Name: " +
                      attrName + " Attribute Content: " + attr);
            if(attr.indexOf("\r") > -1) {
              System.out.println(is + " plus \\r");
            if(attr.indexOf("\n") > -1) {
              System.out.println(is + " plus \\n");
        catch (Exception e) {
          e.printStackTrace();
      }Hope that helps
    Ulrich

  • DBCA hangs with 'database not open'

    I've installed the Oracle 9i ver.2 Enterprise Edition software on a Tru64 Unix machine with 512MB of memory. The software was installed without any problems. However, while creating any database thru the Database Configuration Assistant it hangs on 46% on "Creating & starting Oracle instance" with errors of 'ORA-01109: database not open' in cloneDBCreation.log and 'ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL...' in alert_SID.log.
    I have also tried to create a DB via a script file but this hangs up in the 'CREATE DATABASE' command.
    Thanks,
    Robert Lieb

    I am giving up on dbca and will try to get a script to create a db. Included are a log file, and a trace file that shows the script process hanging on "Waiting for smon to enable cache recovery" during the execution of CreateDB.sql.
    Any ideas?
    ============= alert_oraCUP1.log ======================
    Tue Aug 10 13:24:30 2004
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    SCN scheme 3
    Using log_archive_dest parameter default value
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 9.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    timed_statistics = TRUE
    shared_pool_size = 33554432
    large_pool_size = 12582912
    java_pool_size = 0
    control_files = /oracle02/app/oracle/oradata/oraCUP1/control01.ctl, /oracle02/app/oracle/oradata/oraCUP1/control02.ctl, /oracle02/app/oracle/oradata/oraCUP1/control03.ctl
    db_block_size = 4096
    db_cache_size = 29360128
    compatible = 9.2.0.0.0
    db_file_multiblock_read_count= 8
    fast_start_mttr_target = 300
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    undo_retention = 10800
    remote_login_passwordfile= EXCLUSIVE
    db_domain = TestAlpha.com
    instance_name = oraCUP1
    dispatchers = (PROTOCOL=TCP) (SERVICE=oraCUP1XDB)
    hash_join_enabled = TRUE
    background_dump_dest = /oracle01/app/oracle/admin/oraCUP1/bdump
    user_dump_dest = /oracle01/app/oracle/admin/oraCUP1/udump
    core_dump_dest = /oracle01/app/oracle/admin/oraCUP1/cdump
    sort_area_size = 524288
    db_name = oraCUP1
    open_cursors = 300
    star_transformation_enabled= FALSE
    query_rewrite_enabled = FALSE
    pga_aggregate_target = 20971520
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    Tue Aug 10 13:24:44 2004
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Tue Aug 10 13:24:58 2004
    CREATE DATABASE oraCUP1
    MAXINSTANCES 1
    MAXLOGHISTORY 1
    MAXLOGFILES 5
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    DATAFILE '/oracle02/app/oracle/oradata/oraCUP1/system01.dbf' SIZE 250M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
    EXTENT MANAGEMENT LOCAL
    DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE '/oracle02/app/oracle/oradata/oraCUP1/temp01.dbf' SIZE 40M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    UNDO TABLESPACE "UNDOTBS1" DATAFILE '/oracle02/app/oracle/oradata/oraCUP1/undotbs01.dbf' SIZE 200M REUSE AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
    CHARACTER SET WE8ISO8859P1
    NATIONAL CHARACTER SET AL16UTF16
    LOGFILE GROUP 1 ('/oracle02/app/oracle/oradata/oraCUP1/redo01.log') SIZE 1M,
    GROUP 2 ('/oracle02/app/oracle/oradata/oraCUP1/redo02.log') SIZE 1M,
    GROUP 3 ('/oracle02/app/oracle/oradata/oraCUP1/redo03.log') SIZE 1M
    Tue Aug 10 13:25:00 2004
    Database mounted in Exclusive Mode.
    Tue Aug 10 13:25:02 2004
    Successful mount of redo thread 1, with mount id 130099050.
    Assigning activation ID 130099050 (0x7c1276a)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: /oracle02/app/oracle/oradata/oraCUP1/redo01.log
    Successful open of redo thread 1.
    Tue Aug 10 13:30:10 2004
    Waiting for smon to enable cache recovery.
    ===================================
    ============= oracup1_ora_2364.trc ======================
    /oracle01/app/oracle/admin/oraCUP1/udump/oracup1_ora_2364.trc
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    ORACLE_HOME = /oracle01/app/oracle/product/9.2.0.1.0
    System name:     OSF1
    Node name:     TestAlpha.com
    Release:     V5.1
    Version:     1885
    Machine:     alpha
    Instance name: oraCUP1
    Redo thread mounted by this instance: 1
    Oracle process number: 10
    Unix process pid: 2364, image: [email protected] (TNS V1-V3)
    *** SESSION ID:(7.1) 2004-08-10 13:30:10.838
    Waiting for smon to enable cache recovery.
    *** 2004-08-10 13:35:20.268
    Waiting for smon to enable cache recovery.
    ===================================

  • Headache with IE11 not opening some java(i think) popups/boxes. Pls Help!

    Hello, I work as an IT guy, and this is the first time I cant solve something, or Im rly stupid with this or its an IE11 problem.
    Im running windows 8.1 with IE11, I wish I could downgrade!
    The problem: While opening a website (insurance) when I click some elements to open a popup into the same ie tab it "loads" but it does not open/show anything.
    This is the element in this website that does not work. I tried a lot of things... sfc /scannow, reinstalling java, reseting IE11 settings, etc etc etc
    I WOULD LOVE SOME HELP!
    <INPUT onclick="ShowDialog(this, 'LienholderPPro', true); return false;" onmousedown=OnMouseButtonDown(this) onfocus="OnFocusShowDialog(this,'LienholderPPro','VEH.0.veh_lien_ind'); return false;" id=VEH.0.veh_lien_ind-button
    class="lpAiDbdButton dbdButton" style="BORDER-LEFT-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-TOP-WIDTH: 0px" src="Images/add_delete.gif" type=image name=VEH.0.veh_lien_ind-button TreatUnknownRelevanceAs="None"
    jQuery1910693633654042384="124" enabledimage="Images/add_delete.gif" disabledimage="Images/add_delete_disabled.gif">
    P.S. IT WORKS WITH GOOGLE CHROME, BUT I RLY NEED IE TO WORK.

    Hi Loy,
    Apologize for the late reply. What is your current situation?
    I think what Robert suggested here is to use F12 tools to change the User-Agent string:
    User-Agent string changes
    For the compatibility changes in IE 11, please see:
    Compatibility changes in IE 11
    Please take use of F12 tool, and then change the User-Agent string or the document mode, see if there are any differences.
    Using the F12 developer tools
    Best regards
    Michael Shao
    TechNet Community Support

  • Win 8.1 Pro, iTunes install fails with "could not open key"

    Have tried complete uninstall as required by "Remove and reinstall" Did not work.

    Okay ... although you've got a Windows 8 (rather than a 7 or a Vista), let's try the following user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\[LongStringOfLettersAndNumbe rs]" error messages when installing iTunes for Windows

  • Weird issue with iTunes not opening

    I remember having this issue about a year ago, but I don't remember what I did to solve it.. So I'm here asking for help again.
    I recently got a nice, large, fast external Firewire HDD... I did a clean install of OSX onto it, and on the first boot I used the tool that transferred all my programs and settings from the original drive.
    Everyhting has been running fine. I think anyone wiht a G4 mini should run off an external Firewire HDD. It runs so much smoother and a little quicker than the slow internal drive.
    Until... I try to open iTunes.... I click the dock icon, it bounces a few times, the black arrow appears under the icon, and then --- nothing.. So I think to myself, ".........?" and try to force quit it. I can't. Not by right clicking the icon, or by using the force quit menu under the apple menu.
    I rebooted - immediately opon bootup, iTunes will work fine. If I close it, and then try to open it a few minutes later, iTunes will not open. It also won't open if i just wait for a few minutes after bootup and then open it (as opposed to open it right away, then close it, then open again later)....
    I tried to repair permissions.... No permissions errors currently found.
    Using 10.4.8, and the latest version of iTunes and Quicktime.

    See if anything here helps.
    iPod does not play content purchased from the iTMS.

  • Hyperion Planning Not Opening Through Workspace

    Hi ,
    We are facing problem in opening the EPMA planning application through workspace. After login into the workspace when we open planning application it is just getting hang and after so long time we get below message
    ===================================
    Loading the Module 'HyperionPlanning.planning' failed.
    The Operation was times out.
    ===================================
    Restarting the Hyperion services does not resolved the issue.
    We can login to the shared service , workspace and other Hyperion modules , however Hyperion Planning is not working.
    Could you please advice where would be the problem and How I should go ahead to resolve this issue
    Thanks ,

    Hi John ,
    Please find below log from HyS9Planning-sysout.log file
    =============================================================================================
    <06-Feb-2013 10:08:22 o'clock GMT> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <06-Feb-2013 10:08:22 o'clock GMT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <06-Feb-2013 10:08:22 o'clock GMT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.0.2-11-135406-1.6.0_20-20100624-2119-windows-x86_64 from Oracle Corporation>
    <06-Feb-2013 10:08:30 o'clock GMT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.4.0 Fri Dec 17 20:47:33 PST 2010 1384255 >
    <06-Feb-2013 10:08:35 o'clock GMT> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://localhost:7001.>
    <06-Feb-2013 10:08:35 o'clock GMT> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>
    <06-Feb-2013 10:08:35 o'clock GMT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <06-Feb-2013 10:08:35 o'clock GMT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <06-Feb-2013 10:08:37 o'clock GMT> <Notice> <LoggingService> <BEA-320400> <The log file D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\Planning0.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <06-Feb-2013 10:08:37 o'clock GMT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\Planning0.log00113. Log messages will continue to be logged in D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\Planning0.log.>
    <06-Feb-2013 10:08:37 o'clock GMT> <Notice> <Log Management> <BEA-170019> <The server log file D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\Planning0.log is opened. All server side log events will be written to this file.>
    <06-Feb-2013 10:09:03 o'clock GMT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <06-Feb-2013 10:09:13 o'clock GMT> <Warning> <JTA> <BEA-110503> <The migrator(the AdminServer for manual JTA migration policy, or the Singleton Master for automatic JTA migration policy) is not available. Will skip JTA TRS failback because isStrictOwnershipCheck is [false]. This may lead to potencial TLOG corruption if TRS of Planning0 has been migrated to backup server and the backup server is accessing the TLOG of Planning0. More safety can be achieved by setting isStrictOwnershipCheck to [true].>
    <06-Feb-2013 10:09:14 o'clock GMT> <Notice> <LoggingService> <BEA-320400> <The log file D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <06-Feb-2013 10:09:14 o'clock GMT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\access.log00147. Log messages will continue to be logged in D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\access.log.>
    <06-Feb-2013 10:10:09 o'clock GMT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <06-Feb-2013 10:10:09 o'clock GMT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    Calling getDomainConfiguration()
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    Calling getRuntimeService()
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
    return com.bea:Name=EPMSystem,Type=Domain
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    Domain location is 'D:\Oracle\Middleware\user_projects\domains\EPMSystem'
    Calling getRuntimeService()
    return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    Calling getConnection()
    return weblogic.management.jmx.mbeanserver.WLSMBeanServer@70bf97
    Checking D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\registry_update.xml file
    EPM_ORACLE_HOME: D:\Oracle\Middleware\EPMSystem11R1
    Template for PLANNING#11.1.2.0: D:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_planning_11.1.2.1.jar
    Dependencies for D:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_planning_11.1.2.1.jar: []
    BPMUI shared webapp not referenced from PLANNING#11.1.2.0
    Application name: PLANNING#11.1.2.0
    Application source: HyperionPlanning.ear
    Server name: Planning0
    Server port: 8300
    Server SSL port: 8343
    Application context: HyperionPlanning
    Registry product type: PLANNING_PRODUCT
    Registry physical web application type: PLANNING_WEBAPP
    weblogic.Name property is 'Planning0', seems to be WebLogic mode
    registry.isRegistryDatabaseCreated()true
    Registry was initialized sucessfully
    Executing pre custom update for PLANNING#11.1.2.0
    EPM_ORACLE_INSTANCE: D:\Oracle\Middleware\user_projects\epmsystem1
    Physical Web App found
    Web app already linked to some application server: false
    The registry was not modifyed because it already containse all sturctures
    Web app is already linked to the logical web app
    No needs to run custom updater for PLANNING#11.1.2.0
    loggingUpdatePLANNING.block file exist or the system is running in the Fusion mode, skipping logging.xml configuration
    Planning locale: en_GB
    <06-Feb-2013 10:11:25 o'clock GMT> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <06-Feb-2013 10:11:25 o'clock GMT> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of Planning.>
    <06-Feb-2013 10:11:30 o'clock GMT> <Warning> <Log Management> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    <06-Feb-2013 10:11:55 o'clock GMT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <06-Feb-2013 10:11:55 o'clock GMT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Cluster> <BEA-000162> <Starting "async" replication service with remote cluster address "null">
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file D:\Oracle\Middleware\jrockit_160_20\jre\lib\security\cacerts.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Alert> <Security> <BEA-090152> <Demo trusted CA certificate is being used in production mode: [
    Version: V3
    Subject: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: Sun RSA public key, 512 bits
    modulus: 9550192877869244258838480703390456015046425375252278279190673063544122510925482179963329236052146047356415957587628011282484772458983977898996276815440753
    public exponent: 65537
    Validity: [From: Thu Mar 21 20:12:27 GMT 2002,
                   To: Tue Mar 22 20:12:27 GMT 2022]
    Issuer: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
    SerialNumber: [    33f10648 fcde0deb 4199921f d64537f4]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
    Key_CertSign
    Algorithm: [MD5withRSA]
    Signature:
    0000: 9D 26 4C 29 C8 91 C3 A7 06 C3 24 6F AE B4 F8 82 .&L)......$o....
    0010: 80 4D AA CB 7C 79 46 84 81 C4 66 95 F4 1E D8 C4 .M...yF...f.....
    0020: E9 B7 D9 7C E2 23 33 A4 B7 21 E0 AA 54 2B 4A FF .....#3..!..T+J.
    0030: CB 21 20 88 81 21 DB AC 90 54 D8 7D 79 63 23 3C .! ..!...T..yc#<
    ] The system is vulnerable to security attacks, since it trusts certificates signed by the demo trusted CA.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[2]" is now listening on 127.0.0.1:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 10.94.154.47:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[3]" is now listening on 0:0:0:0:0:0:0:1:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on 10.96.172.50:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 127.0.0.1:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 0:0:0:0:0:0:0:1:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.94.154.47:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 10.96.172.50:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Notice> <WebLogicServer> <BEA-000358> <Started WebLogic Independent Managed Server "Planning0" for domain "EPMSystem" running in Production Mode>
    <06-Feb-2013 10:12:01 o'clock GMT> <Warning> <JMX> <BEA-149510> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:null>.>
    <06-Feb-2013 10:12:01 o'clock GMT> <Warning> <Server> <BEA-002611> <Hostname "BRWBBPBPU.integration.net", maps to multiple IP addresses: 10.94.154.47, 10.96.172.50, 0:0:0:0:0:0:0:1>
    <06-Feb-2013 10:12:07 o'clock GMT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <06-Feb-2013 10:12:07 o'clock GMT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    using java.library.path: D:\Oracle\Middleware\EPMSystem11R1/products/Planning/lib64;D:\Oracle\Middleware\EPMSystem11R1/bin;D:\Oracle\Middleware\EPMSystem11R1/common/EssbaseRTC-64/11.1.2.0/bin;D:\Oracle\MIDDLE~1\patch_wls1034\profiles\default\native;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;D:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;D:\Oracle\MIDDLE~1\JROCKI~1\jre\bin;D:\Oracle\MIDDLE~1\JROCKI~1\bin;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\oci920_8
    EPM_ORACLE_HOME (D:\Oracle\Middleware\EPMSystem11R1) is set from JVM property "EPM_ORACLE_HOME".
    using Java property for Hyperion Home D:\Oracle\Middleware\EPMSystem11R1
    ========================================================================================================
    Edited by: 946582 on 6 Feb, 2013 10:47 PM

  • IPod Touch apps will not open (through no fault of my own)

    I'm really starting to get frustrated. I just got my new iPod Touch 2 days ago. I loved it. However, today I tried opening several of my apps but they won't open.
    1. I tried connecting the iPod back to iTunes to see if they just didn't synchronize correctly... didn't work.
    2. I tried to reset all settings in the settings menu... didn't work.
    3. Tried resetting the iPod by holding the sleep and home keys... didn't work.
    The last option is to delete all the apps and download them again, which I don't want to do. I feel like of I have to download them again after 2 days, then how many more times will this happen? (Understand what I mean?)
    The music and video playback is fine, but if this was all I wanted, I would have saved $150 and bought an iPod Classic.
    I'm sure this problem has a reasonable solution that doesn't involve deleting or re-installing anything. I'm just hoping that one of you know what that solution is.
    Hope you can help me.
    Thank you for your time.

    It could be that you are trying to run apps that require version 3 software, and although you've only just bought your Touch, there are several posts on the forum which suggest that they are still being shipped with version 2.
    To find out which version your Touch is running, go from the (Touch's) *Main Menu* to Settings/General/About and look at the version number towards the bottom of that list. If it's version 3, then there's a different problem, but if it's version 2 (or 2.2.1), read on.
    Go to the *iTunes Store/apps* section and look up the apps that don't work. (Once in the store, you can type the app name into the *Search iTunes Store* box at the top right.) Towards the bottom of the screen, on the right hand side is the heading REQUIREMENTS and under here is says *Compatible with ...* & also *Requires iPhone OS ??? or later.*
    Many apps only require 2.2.1, but if obviously, if you have one that requires version 3 and your Touch is only on version 2.2.1, that's likely to be the problem. (A less likely problem is the *Compatible with ...* An app that is only compatible with the iPhone, but not with the Touch is usually because the app makes use of the phone parts of the iPhone which are not on the Touch.)
    So, is it the version number? If so, the solution is to upgrade your Touch to version 3. The bad news is that you have to pay for it. It's approximately 10US$ or £5.99 here in the UK. (I know what you're going to say, "why am I paying again when I've only just bought it?" The Apple view is that version 3 is a major upgrade to the operating system that offers new features and is not part of "maintaining" the existing OS. I cannot answer why new Apple are shipping new Touch's with the old OS - because I don't know, sorry.)
    If you do require the new OS, I recommend that grit your teeth and buy it. To do this, connect your Touch to your iTunes and look (in iTunes) on the Summary pane. Somewhere at the top of the pane will be information about whether your Touch is "up to date" and you should be able to see the option to upgrade.
    Phil

  • Having issues with Mail not opening since updating to 10.9.2

    Hi,
    Recently updated to 10.9.2 and can no longer open Mail. I urgently need my emails as I am going to the USA and need confirmations etc.
    I have tried a few of the online things such as deleting the com.mail.com file and that didn't fix anything. Mail opens in the gues account but not on my account. So I am at a loss at what to try next. Below is the full crash report.
    Hopefully someone has some ideas.
    Thanks
    Process:         Mail [483]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.2 (1874)
    Build Info:      Mail-1874000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [199]
    Responsible:     Mail [483]
    User ID:         501
    Date/Time:       2014-05-11 21:14:56.303 +0800
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  459297E6-5B2F-6B0F-AC8F-70869ABAD4EE
    Crashed Thread:  3  -[MFLibraryUpgrader run]  Dispatch queue: NSOperationQueue 0x60000002e940
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to exception while holding database lock 'NSInvalidArgumentException', reason: '*** -[__NSSetM addObject:]: object cannot be nil'
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8e1d525c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff947d0e75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8e0f4ba6 -[__NSSetM addObject:] + 790
    3   Mail                                0x00007fff8aad979f +[MFAccount readAccountsUsingStorageKey:forceReadFromMail:] + 441
    4   Mail                                0x00007fff8abc146b -[MFLibraryUpgrader _addMailboxSource:] + 176
    5   Mail                                0x00007fff8abb8d24 -[MFLibraryUpgrader _upgradeSchema] + 552
    6   Mail                                0x00007fff8abb7e8b __24-[MFLibraryUpgrader run]_block_invoke + 648
    7   Mail                                0x00007fff8ab97525 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 1328
    8   Mail                                0x00007fff8abb7601 -[MFLibraryUpgrader run] + 908
    9   CoreFoundation                      0x00007fff8e0c0bec __invoking___ + 140
    10  CoreFoundation                      0x00007fff8e0c0a54 -[NSInvocation invoke] + 308
    11  MailCore                            0x00007fff8af5eb44 -[MCMonitoredInvocation invoke] + 211
    12  MailCore                            0x00007fff8af817e8 -[MCThrowingInvocationOperation main] + 40
    13  MailCore                            0x00007fff8af25ed8 -[_MCInvocationOperation main] + 332
    14  Foundation                          0x00007fff88b928a1 -[__NSOperationInternal _start:] + 631
    15  Foundation                          0x00007fff88b9254b __NSOQSchedule_f + 64
    16  libdispatch.dylib                   0x00007fff89c052ad _dispatch_client_callout + 8
    17  libdispatch.dylib                   0x00007fff89c097ff _dispatch_async_redirect_invoke + 154
    18  libdispatch.dylib                   0x00007fff89c052ad _dispatch_client_callout + 8
    19  libdispatch.dylib                   0x00007fff89c0709e _dispatch_root_queue_drain + 326
    20  libdispatch.dylib                   0x00007fff89c08193 _dispatch_worker_thread2 + 40
    21  libsystem_pthread.dylib             0x00007fff90ee5ef8 _pthread_wqthread + 314
    22  libsystem_pthread.dylib             0x00007fff90ee8fb9 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8b3aea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8b3add18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8e0f8155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8e0f7779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8e0f70b5 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x00007fff90bf1a0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x00007fff90bf17b7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x00007fff90bf15bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x00007fff934323de _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x00007fff93431a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.mail                          0x0000000107ca719e 0x107b9b000 + 1098142
    11  com.apple.mail                          0x0000000107ca6778 0x107b9b000 + 1095544
    12  com.apple.mail                          0x0000000107b9f3cf 0x107b9b000 + 17359
    13  com.apple.mail                          0x0000000107b9ea73 0x107b9b000 + 14963
    14  com.apple.CoreFoundation                0x00007fff8e1a3e0c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    15  com.apple.CoreFoundation                0x00007fff8e097a6d _CFXNotificationPost + 2893
    16  com.apple.Foundation                    0x00007fff88b8d7ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    17  com.apple.AppKit                        0x00007fff93439cf9 -[NSApplication _postDidFinishNotification] + 289
    18  com.apple.AppKit                        0x00007fff93439a2c -[NSApplication _sendFinishLaunchingNotification] + 195
    19  com.apple.AppKit                        0x00007fff93436916 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 570
    20  com.apple.AppKit                        0x00007fff9343636b -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    21  com.apple.Foundation                    0x00007fff88babf0a -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    22  com.apple.Foundation                    0x00007fff88babd7d _NSAppleEventManagerGenericHandler + 106
    23  com.apple.AE                            0x00007fff90b74e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    24  com.apple.AE                            0x00007fff90b74c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    25  com.apple.AE                            0x00007fff90b74b36 aeProcessAppleEvent + 315
    26  com.apple.HIToolbox                     0x00007fff90bfe161 AEProcessAppleEvent + 56
    27  com.apple.AppKit                        0x00007fff93432246 _DPSNextEvent + 1026
    28  com.apple.AppKit                        0x00007fff93431a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    29  com.apple.AppKit                        0x00007fff93425b2c -[NSApplication run] + 553
    30  com.apple.AppKit                        0x00007fff93410913 NSApplicationMain + 940
    31  libdyld.dylib                           0x00007fff8dfa85fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8b3b3662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff89c0743d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff89c07152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8b3b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90ee5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90ee8fb9 start_wqthread + 13
    Thread 3 Crashed:: -[MFLibraryUpgrader run]  Dispatch queue: NSOperationQueue 0x60000002e940
    0   libsystem_kernel.dylib                  0x00007fff8b3b2866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff90ee535c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff89626b1a abort + 125
    3   com.apple.Mail.framework                0x00007fff8ab97f5c +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 3943
    4   com.apple.Mail.framework                0x00007fff8abb7601 -[MFLibraryUpgrader run] + 908
    5   com.apple.CoreFoundation                0x00007fff8e0c0bec __invoking___ + 140
    6   com.apple.CoreFoundation                0x00007fff8e0c0a54 -[NSInvocation invoke] + 308
    7   com.apple.MailCore                      0x00007fff8af5eb44 -[MCMonitoredInvocation invoke] + 211
    8   com.apple.MailCore                      0x00007fff8af817e8 -[MCThrowingInvocationOperation main] + 40
    9   com.apple.MailCore                      0x00007fff8af25ed8 -[_MCInvocationOperation main] + 332
    10  com.apple.Foundation                    0x00007fff88b928a1 -[__NSOperationInternal _start:] + 631
    11  com.apple.Foundation                    0x00007fff88b9254b __NSOQSchedule_f + 64
    12  libdispatch.dylib                       0x00007fff89c052ad _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff89c097ff _dispatch_async_redirect_invoke + 154
    14  libdispatch.dylib                       0x00007fff89c052ad _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff89c0709e _dispatch_root_queue_drain + 326
    16  libdispatch.dylib                       0x00007fff89c08193 _dispatch_worker_thread2 + 40
    17  libsystem_pthread.dylib                 0x00007fff90ee5ef8 _pthread_wqthread + 314
    18  libsystem_pthread.dylib                 0x00007fff90ee8fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8b3b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90ee5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90ee8fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8b3b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90ee5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90ee8fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8b3b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90ee5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90ee8fb9 start_wqthread + 13
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8b3b2a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89645dc0 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff89645cb2 usleep + 54
    3   com.apple.AppKit                        0x00007fff9369621d -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation                    0x00007fff88bf176b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x00007fff90ee4899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff90ee472a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff90ee8fc9 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000010815c000  rcx: 0x000000010815b828  rdx: 0x0000000000000000
      rdi: 0x0000000000001a03  rsi: 0x0000000000000006  rbp: 0x000000010815b850  rsp: 0x000000010815b828
       r8: 0x0000000008000100   r9: 0x0000000000000000  r10: 0x000000000c000000  r11: 0x0000000000000206
      r12: 0x00007fff76ffdec0  r13: 0x00007fff947c8080  r14: 0x0000000000000006  r15: 0x00007fff947c8001
      rip: 0x00007fff8b3b2866  rfl: 0x0000000000000206  cr2: 0x00007f83d1706000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x107b9b000 -        0x107e8cfff  com.apple.mail (7.2 - 1874) <9F450371-5F9B-3F84-A38F-BB4CAFC5AA23> /Applications/Mail.app/Contents/MacOS/Mail
           0x109857000 -        0x109859fff  apop.so (170.1) <97DD24EE-D5F4-34EB-B521-D7BA883D2606> /usr/lib/sasl2/apop.so
           0x109861000 -        0x109871ff7  dhx.so (170.1) <E4299F4A-F42C-397A-A306-58161EFD7686> /usr/lib/sasl2/dhx.so
           0x109900000 -        0x109908fff  digestmd5WebDAV.so (170.1) <B11199EC-EF62-3592-AE51-38EBD1B6282F> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10990d000 -        0x10990ffff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x109913000 -        0x109915fff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x10991a000 -        0x109922ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x109927000 -        0x10992bfff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x109930000 -        0x109932fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x109981000 -        0x109986fff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x10998b000 -        0x109992fff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x10999b000 -        0x10999dfff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x1099a1000 -        0x1099a5ffd  libpps.so (170.1) <C7604F07-E966-33F7-8727-93F000CBA92F> /usr/lib/sasl2/libpps.so
           0x1099aa000 -        0x1099adfff  mschapv2.so (170.1) <C79F63BB-E66D-3552-9C4C-2D3EB14CEE01> /usr/lib/sasl2/mschapv2.so
           0x1099b2000 -        0x1099daff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x1099f0000 -        0x1099f2fff  pwauxprop.so (400.1) <B95FA3F5-0EE9-335E-BBC7-FDEDEB7F18F0> /usr/lib/sasl2/pwauxprop.so
           0x1099f7000 -        0x1099f9fff  shadow_auxprop.so (170.1) <E02127CB-F9C0-3E3B-ABBB-473EC0CB6DE7> /usr/lib/sasl2/shadow_auxprop.so
           0x1099fe000 -        0x109a00fff  smb_nt.so (170.1) <B508FD03-CE31-3B93-91D7-440BEDAD9581> /usr/lib/sasl2/smb_nt.so
           0x109a05000 -        0x109a07fff  smb_ntlmv2.so (170.1) <938D40AF-BEB3-3F55-B409-C84E3C2886FD> /usr/lib/sasl2/smb_ntlmv2.so
           0x10c7e9000 -        0x10c7f0ff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
        0x7fff64e82000 -     0x7fff64eb5817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff86d06000 -     0x7fff86d06fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff86d92000 -     0x7fff86dc1ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff86dc2000 -     0x7fff87332fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff87333000 -     0x7fff8733eff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8733f000 -     0x7fff87c5eaf3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff87c5f000 -     0x7fff87c69ff7  libcsfde.dylib (380) <A3673EC2-5B81-3190-9BA5-F27013118EC6> /usr/lib/libcsfde.dylib
        0x7fff87c6a000 -     0x7fff87e5affd  com.apple.WebKit2 (9537 - 9537.74.9) <3F7B257F-D0DA-3AA8-BE8B-0C5474FE9806> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff87e5b000 -     0x7fff87f91ff6  com.apple.WebKit (9537 - 9537.74.9) <CA0C0387-8A66-34D4-8B1C-F5CDDBDA76BB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff87f92000 -     0x7fff87f93fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff87f94000 -     0x7fff87ff4fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff87ff5000 -     0x7fff87ff9ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff88021000 -     0x7fff88039ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8803a000 -     0x7fff880fcff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff880fd000 -     0x7fff8810fff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <4A5857F9-E249-3FA6-ADBB-410606AEC8CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff88139000 -     0x7fff8813bff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8813c000 -     0x7fff881affff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff881b0000 -     0x7fff88215ff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff884e0000 -     0x7fff88610ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff88611000 -     0x7fff88611ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff88612000 -     0x7fff88665fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff88666000 -     0x7fff8868bff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8868c000 -     0x7fff887aeff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff88b8b000 -     0x7fff88e89fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff88e8a000 -     0x7fff88e9bfff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff88ea5000 -     0x7fff8905dff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff8912f000 -     0x7fff89132fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff89133000 -     0x7fff8914cff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8914d000 -     0x7fff89437fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff89499000 -     0x7fff8949cfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89530000 -     0x7fff89532ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff89533000 -     0x7fff8955bffb  libRIP.A.dylib (599.20.11) <D79461A6-2E24-3531-ADA2-EAC972384A7D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8955c000 -     0x7fff89573ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff89574000 -     0x7fff89575ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff89592000 -     0x7fff89599ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff895ae000 -     0x7fff895c4ff7  com.apple.ContactsUI (8.0 - 1369) <54A4A86A-B9F8-37A1-810B-BA39C00E02CF> /System/Library/PrivateFrameworks/ContactsUI.framework/Versions/A/ContactsUI
        0x7fff895ca000 -     0x7fff89653ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff89654000 -     0x7fff89685fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff89686000 -     0x7fff896a1ff7  com.apple.CalendarStore (7.0 - 1366) <27072D7F-8281-3958-A66C-3A3F862F3458> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff896a2000 -     0x7fff897a8ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff89840000 -     0x7fff89888ff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff89889000 -     0x7fff8988dfff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff8988e000 -     0x7fff89919fff  libCoreStorage.dylib (380) <310E877E-0770-385F-B170-FA4623E753E1> /usr/lib/libCoreStorage.dylib
        0x7fff8991a000 -     0x7fff89922ff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff89923000 -     0x7fff89952fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff89953000 -     0x7fff8995bff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8995c000 -     0x7fff89bbdfff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff89bbe000 -     0x7fff89c03fff  libcurl.4.dylib (78.90.1) <818543D6-0CCE-3F18-9BF1-4D18B81018F3> /usr/lib/libcurl.4.dylib
        0x7fff89c04000 -     0x7fff89c1efff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
        0x7fff89c22000 -     0x7fff89c2dff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff89c2e000 -     0x7fff89c37ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89c38000 -     0x7fff89c47ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff89c48000 -     0x7fff89d89fff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff89e12000 -     0x7fff89e51fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff89e52000 -     0x7fff89e7affb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff89e7b000 -     0x7fff89e7eff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff89f1e000 -     0x7fff89f30fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff89f31000 -     0x7fff89f32ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff89f33000 -     0x7fff89f5fff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff89f60000 -     0x7fff89f60fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff89f61000 -     0x7fff89fcefff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff89fdf000 -     0x7fff8a04eff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a05c000 -     0x7fff8a05eff7  com.apple.securityhi (9.0 - 55005) <38784C88-AA07-350E-97A3-FCC24C97FC82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8a05f000 -     0x7fff8a086ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8a087000 -     0x7fff8a0d5fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8a23d000 -     0x7fff8a24aff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8a24b000 -     0x7fff8a27ffff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff8a2d5000 -     0x7fff8a2ffff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8a300000 -     0x7fff8a34dff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8a34e000 -     0x7fff8a34efff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a34f000 -     0x7fff8a351ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8a352000 -     0x7fff8a3a9fff  com.apple.IMAP (7.2 - 1874) <9BEBD1CB-EE18-3728-84D9-092EA0AE112C> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
        0x7fff8a416000 -     0x7fff8a42eff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8a42f000 -     0x7fff8a47dfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8a47e000 -     0x7fff8a499ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8a550000 -     0x7fff8a551fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8a584000 -     0x7fff8a5b2ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8a5b3000 -     0x7fff8a5ebff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8a5ec000 -     0x7fff8a8c0fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8a8c1000 -     0x7fff8a8c1ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8a8c2000 -     0x7fff8a8fdfff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8a8fe000 -     0x7fff8a964fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8a965000 -     0x7fff8a9acfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8a9cc000 -     0x7fff8a9f0fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8a9f1000 -     0x7fff8a9f3ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8a9f4000 -     0x7fff8a9f4fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8aa30000 -     0x7fff8aa75ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8aa76000 -     0x7fff8aa80ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8aa81000 -     0x7fff8aac8ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff8aad5000 -     0x7fff8acebfff  com.apple.Mail.framework (7.2 - 1874) <1E9D6A31-FF20-3102-8EB9-3FCF1E13D3EC> /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
        0x7fff8acec000 -     0x7fff8acecfff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8aced000 -     0x7fff8acf9ff7  com.apple.CalendarAgentLink (7.0 - 138) <B8B63D14-D853-3478-B001-BC67B7E9F993> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8ad12000 -     0x7fff8ad34fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8ad35000 -     0x7fff8ad37fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8aec6000 -     0x7fff8aed0ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8aed1000 -     0x7fff8aed3fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8aedd000 -     0x7fff8aefffff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8af00000 -     0x7fff8afa9ff7  com.apple.MailCore (7.2 - 1874) <68F605E3-F062-345C-B86F-1285B7A1F6AB> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff8afaa000 -     0x7fff8afb3fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8afb4000 -     0x7fff8b00dfff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b00e000 -     0x7fff8b00ffff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8b010000 -     0x7fff8b012fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8b013000 -     0x7fff8b09fff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8b0a0000 -     0x7fff8b0b0ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8b0b1000 -     0x7fff8b0d8ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8b0d9000 -     0x7fff8b309ff7  com.apple.CalendarPersistence (7.0 - 138) <A8BDC8DD-9DE2-3819-9B11-114671B6EBB8> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff8b30a000 -     0x7fff8b30afff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b30b000 -     0x7fff8b315fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8b316000 -     0x7fff8b31cfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8b31d000 -     0x7fff8b323fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1369) <A5D1D494-2F84-3A97-A229-04DB308D4481> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8b324000 -     0x7fff8b340fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8b341000 -     0x7fff8b392ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8b393000 -     0x7fff8b39cfff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8b39d000 -     0x7fff8b3b9ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8b3ba000 -     0x7fff8b3baff7  com.apple.frameworks.SleepServices (1.1 - 1.1) <4D9C44FF-5403-3372-A90E-CBF2A34D7CE7> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
        0x7fff8b3bb000 -     0x7fff8b40dff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8b4a5000 -     0x7fff8b4a8ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8b4a9000 -     0x7fff8b4d9fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8b4da000 -     0x7fff8b5a5fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8b5a9000 -     0x7fff8b5c4ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b5c5000 -     0x7fff8b610fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8b611000 -     0x7fff8b86effd  com.apple.RawCamera.bundle (5.03 - 731) <99C18399-B160-3C4A-AEDC-A2FD4944FCC6> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8b86f000 -     0x7fff8b927ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8b928000 -     0x7fff8b9c5fff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8b9c6000 -     0x7fff8b9f2fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8b9f3000 -     0x7fff8b9f4ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8b9f5000 -     0x7fff8b9f6ff7  libSystem.B.dylib (1197.1.1) <5292BF21-9406-32D5-8BB3-7DD02C672FA0> /usr/lib/libSystem.B.dylib
        0x7fff8b9f7000 -     0x7fff8ba15fff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8ba16000 -     0x7fff8ba3fff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8ba40000 -     0x7fff8bbdcff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8bbf4000 -     0x7fff8bbfeff7  com.apple.CrashReporterSupport (10.9 - 538) <DD7669BA-78A6-3BEA-8410-17F556ACAA18> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8bbff000 -     0x7fff8bf35fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8bf7d000 -     0x7fff8bfbefff  com.apple.PerformanceAnalysis (1.47 - 47) <B5B491F2-EF86-3382-B23B-EA78AC40AF25> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8bfbf000 -     0x7fff8bfcbff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8bfcc000 -     0x7fff8bfd4ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8bfd5000 -     0x7fff8c02dff7  com.apple.Symbolication (1.4 - 129) <6D47983E-9B8E-38A0-9503-099601CF118E> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8c02e000 -     0x7fff8c036fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8c0e4000 -     0x7fff8c148fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c149000 -     0x7fff8c152ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8c153000 -     0x7fff8c15aff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8c1a4000 -     0x7fff8c1f6fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8c1f7000 -     0x7fff8c216ff7  com.apple.CalendarFoundation (7.0 - 113.1) <12352B25-2DCF-38C8-9776-CCC68907CF50> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff8c219000 -     0x7fff8c220ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff8c227000 -     0x7fff8c231ff7  com.apple.corerecents (1.0 - 1) <0F44FFB3-8C65-3565-9262-CF6FA0AE0C8A> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
        0x7fff8c232000 -     0x7fff8c361fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8c362000 -     0x7fff8c632ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8c633000 -     0x7fff8c680fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8c681000 -     0x7fff8c68ffff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8c690000 -     0x7fff8c6d0ff7  com.apple.CalDAV (7.0 - 155.2) <B96DAB4A-7431-3FD2-971B-726A67F6E004> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff8cfb7000 -     0x7fff8cfbcff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8cfee000 -     0x7fff8d1acfff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8d1ad000 -     0x7fff8d1dcff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8d1dd000 -     0x7fff8d1e4fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8d1e5000 -     0x7fff8d1e7fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8d1e8000 -     0x7fff8d1fefff  com.apple.CoreMediaAuthoring (2.2 - 947) <9D4F13D2-7A7A-3BE2-90A0-FC9190AE13CC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8d1ff000 -     0x7fff8d228fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8d229000 -     0x7fff8d24ffff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff8d250000 -     0x7fff8d631ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d632000 -     0x7fff8d661fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d662000 -     0x7fff8d667ff7  com.apple.EmailAddressing (7.2 - 1874) <F889E9E5-A143-38F1-91E3-61CF2344A917> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff8d668000 -     0x7fff8d66dfff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d66e000 -     0x7fff8d737fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d738000 -     0x7fff8d781fff  com.apple.CoreMedia (1.0 - 1273.49) <D91EC90A-BFF1-300D-A353-68001705811C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8d782000 -     0x7fff8d793ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8d794000 -     0x7fff8d7c9ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8d7ca000 -     0x7fff8d7defff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8d7df000 -     0x7fff8d7e3fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d7ee000 -     0x7fff8d7f1ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8d7f2000 -     0x7fff8d7f2ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8d7f3000 -     0x7fff8d8d2fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8d8d3000 -     0x7fff8d93dff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d93e000 -     0x7fff8d995fff  com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8d996000 -     0x7fff8da84fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8da85000 -     0x7fff8dccdff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8dcce000 -     0x7fff8de3eff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8de3f000 -     0x7fff8de7dfff  com.apple.MailUI (7.2 - 1874) <CDEBA548-F861-3D53-AC21-1EF046FE0160> /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI
        0x7fff8de7e000 -     0x7fff8dedbfff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8dedc000 -     0x7fff8dee8ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8dee9000 -     0x7fff8df72fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8df73000 -     0x7fff8dfa4ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8dfa5000 -     0x7fff8dfa8ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff8dfa9000 -     0x7fff8e010ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8e011000 -     0x7fff8e022ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8e02d000 -     0x7fff8e02dfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8e02e000 -     0x7fff8e034ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8e087000 -     0x7fff8e26cfff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8e26d000 -     0x7fff8e27dfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8e291000 -     0x7fff8e296fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8e2a4000 -     0x7fff8e31bfff  com.apple.CoreServices.OSServices (600.4 - 600.4) <DAF9AF17-0AC5-364C-B0BF-B1AF3FB4A07F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8e31c000 -     0x7fff8e37aff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8e37b000 -     0x7fff8e3b9ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8e3ba000 -     0x7fff8e3c3ff7  com.apple.MailService (7.2 - 1874) <87141582-08F3-36E8-B4A7-D377D1177178> /System/Library/PrivateFrameworks/MailService.framework/Versions/A/MailService
        0x7fff8e3ef000 -     0x7fff8e3fcfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8e3ff000 -     0x7fff8e48ffff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8e4fb000 -     0x7fff8e54aff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8e54b000 -     0x7fff8e558ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8e559000 -     0x7fff8e561fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8e562000 -     0x7fff8e566ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8e567000 -     0x7fff8e57effa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8e6e6000 -     0x7fff8e76eff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8e7c5000 -     0x7fff8e7eaff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8e7eb000 -     0x7fff8eb62ffa  com.apple.JavaScriptCore (9537 - 9537.74.4) <0942FE6B-3152-30FC-B92A-92A1C29C5295> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8eb63000 -     0x7fff8ecb6ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ecd1000 -     0x7fff8ecdffff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8ece0000 -     0x7fff8ece1fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8ecea000 -     0x7fff8ecebffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8ecec000 -     0x7fff8edbdff1  com.apple.DiskImagesFramework (10.9 - 371.1) <96C40A82-D2F7-310D-879B-7D8960510878> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8edbe000 -     0x7fff8f20cfff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8f20d000 -     0x7fff8f2f1fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8f68b000 -     0x7fff8f68bfff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8f693000 -     0x7fff8f6bdff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
        0x7fff8f73d000 -     0x7fff8f756ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8f757000 -     0x7fff8f75afff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8f75b000 -     0x7fff8f7a7ffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8f7a8000 -     0x7fff8fccbfff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff90047000 -     0x7fff90083ff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/Private

    Corruption in the old Mail database is causing the migration to fail.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail
    Right-click or control-click the line and select
    Services ▹ Open
    from the contextual menu.* A folder named "Mail" should open. Inside it there may be a subfolder named "V2-Temp.noindex". If so, move that folder to the Trash. There may also be one or more subfolders with a name beginning in "IMAP". Move those folders to the Desktop.
    Launch Mail. If it works now, recreate your missing mail accounts in the Mail, Contacts & Calendars preference pane. The mailboxes should repopulate from the servers. That process may take some time if you have a lot of messages.
    You can then delete the items you moved to the Desktop.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Sql case statement with link not opening new window

    Apex 4.2
    I am writing a query that has a case statement. I need the case statement to open up a new window, not a new tab. I have the following:
    SELECT
    case when SCHED_ID = 1 then
    '<a href="javascript:popupURL(''http://www.google.com'')">LINK</a>'
    end as MyLink
    FROM Table_Name
    When I plug this into a a column link in the URL field under a page item or report item, then a popup window appears. However, inside the query I am getting a new tab.
    ANy help on this matter would be great. Thanks in advance.

    Hi,
    Try adding a target attribute to you link:
    '<a href="javascript:popupURL(''http://www.google.com'')" target="_blank">LINK</a>' 
    Regards,
    Vincent

  • Everything having to do with iTunes not opening

    Hello I am having troubles with iTunes. When I click on the iTunes.exe, the mouse loads for half a second and then nothing happens. I've had iTunes work properly before. I just turned on the computer and clicked on iTunes, and it does nothing. I opened Task Manager and noticed that all of the iTunes processes were running. I've reinstalled iTunes but it still doesn't work.
    I have the latest version of iTunes, and Windows 7.

    Try following steps and test one at a time:
    1. Restart computer, right mouse click iTunes icon and select "Run As Administrator"
    2. If that does not work, check to see if this file APSDaemon.exe is the problem here.
    Close your iTunes.
    Press Ctrl-Alt-Del key and choose Task Manager. In the "Processes" Tab, select the file APSDaemon.exe and click End Prosses button, then close the task manager window.
    Now open itunes and see if it is working?
    If that works, to prevent having to do the same process everytime you restart Windows, go to. START button, type in
    MSCONFIG
    Hit ENTER
    Click STARTUP Tab, Uncheck "Apple Push", click OK.
    Restart Windows.
    3. If that fails or you don't see ApsDaemon.exe in the Processes, refer to following article to remove SC files:
    http://support.apple.com/kb/TS2363
    4. If that fails, repair or reinstall your Quicktime. START / CONTROL PANEL / PROGRAMS N FEATURES / hightlight QUICKTIME and click REPAIR

  • Help with programs not opening!

    I have a Lenovo Ideapad Miix 10.
    Worked fine until recently.  Now when I try to open something like Word or Excel, they don't open.  Instead, it takes me to the desktop and does nothing.  When I go to "troubleshoot compatibility", I have the option to test the program, allow access to change the computer (or whatever its asking for..) but it still does nothing.  When I click no and select that the problem is not fixed, the troubleshooter lists incompatible program as being detected.
    This is really inconvenient, and I am still getting comfortable with the windows tablet so dont exactly know my way around yet.  anyone able to help out? thanks in advance!

    You are posting in the "icloud on my mac" forum, but your profile mentions Windows.  If using a mac, you need to have iphoto or aperture installed in order to receive new photos via photo stream.  If using windows, try posting in the iCloud on a PC forum.  You'll get better help there.
    https://discussions.apple.com/community/icloud/icloud_on_my_pc

Maybe you are looking for

  • How to connect a Sony Bravia TV to the internet through your Airport network

    Since it took me a lot of time to figure out how to connect my Sony Bravia TV to the internet through my Airport network, I better share how to do it. Hopefully saving others a lot of time. My 32EX600 Sony Bravia TV is Ethernet connected to my Mac Mi

  • Linksys E2000 Suddenly Choppy When Playing HD Videos

    So quick back story. I stream a lot of 720p HD video over my network (both local storage and Internet streaming). I bought the E2000 about 5-6 months ago after my last router stopped working, and it has been working flawlessly up until now. So a few

  • Need working days for a particular month and year

    Hi, I need the number of working days for a particular month and year.Saturdays and Sundays are holidays. Regards, Vignesh

  • Transaction is not Rolling Back in Stateless Session Bean

              Hi,           I am using UserTransaction in Stateless Session bean .           Transaction is not rolling back.           The following code is writen in stateless session bean. In UserTransaction i am           calling Two methods of anoth

  • Illustrator CC refuses to show help

    Today I wanted to sit down with the 'new features' section of the manual and get a handle on what's new. So I did help->illustrator help, and, as usual, I got this dialog box instead. "To access online help or to download help contents, you need to b