Preferences in SPM 3.0

Dear experts,
We are using SPM 3.0 and once logged onto the portal, we have "Preferences" on the top right. Under it, we have "Report" where we have a field for Data Source (actually it is a query) followed by some chart preferences.
My question is, what is the significance of this Data Source field here? Does it mean that for a certain Data Source (BW query), user can mention charting preferences? I am not able to test this feature since we are experiencing an error "Could not persist user preferences" while saving it.
Appropriate help would be appreciated and rewarded. Thank you.
Best regards,
Madhur Shah

Hi Madhur,
You asked: “what is the significance of this Data Source field here?” and “…a certain Data Source (BW query), user can mention charting preferences?”
The datasource for the report parameter in preferences sets the default query for any new report. The charting options listed below that are not connected to the selection of the datasource, they are specific to the user - not the datasource.
Kind Regards,
John Harris
Senior Support Engineer, SAP Active Global Support,
SAP America, Inc., 1001 Summit Blvd, #2100, Atlanta, GA 30319, USA

Similar Messages

  • No datasources in SPM after all refresh datasources option

    Hi,
    I tried Refresh all data sources option in SPM, checking the log it showed that the Metadata loaded message. But post that, I could not see any data sources in User preferences or datasource Administration. But I could the list in Application properties.
    This is a crtical issue as till this is resolved no reports are displayed.
    Regards,
    Sampat Desai

    Hi Sampat,
    We have seen this error in the case when some user is saving reports at the same time when refresh datasource is being done. Please try following steps which should most likely resolve this issue:
        1) Delete all nodes under the folder "/application/metadata" using the methods OPM_PS_GET_NODE_METADATA and OPM_PS_REMOVE_NODE(Please note that /application/metadata itself should not be deleted)
        2) Go to table "OPM_PS_ITEM_DET" and search for all objects with "NODE_TYPE" as "AUI_METADATA_CACHE". This will return all the nodes which are dangling as there should be no such value.
        3) Retrieve the GUIDs from step 2 and remove the existing nodes using the FM OPM_PS_REMOVE_NODE
    Thanks,
    Divyesh

  • Field LANGU missing in structure OPM_PS_STRUCT_PROPERTY for SPM

    Hello,
    after installing all the components plus acivation of the BI Content for SPM, I got a short dump when calling up the Web GUI.
    After further analysation I discovered, that the strucutre OPM_PS_STRUCT_PROPERTY is missing the field LANGU in our development system. In Q and P the field is there and our basis guys cannot detect any errors within the add on installation process.
    Any ideas how to fix that without having to repair the structure in the dev system?
    Thanks in advance,
    Tobias

    Hello Divyesh,
    thanks for your reply. In the meanwhile we fixed the structure by a modification to see if the web client works afterwards.
    Luckily this is the case, so we can proceed for now. Yet we issued an OSS inquiry to further investigate what happened.
    Nevertheless we still have one issue within the web client. We cannot get it to switch to german language even though we set the language in the user preferences. When starting up the client for that respective user the SPM log collects the error messages "Could not find Integration Links" and "Could not find user preferences for user". Any ideas what could cause that error. We checked all the web services and they are all running.
    You also wrote we could try reinstallation. Until now I though that reinstalling add ons is not possible. Is there a way to this, that is promoted by SAP?
    Thank you very much,
    Tobias

  • Default Hierarchy in the SPM UI

    Hi,
    We are maintaining the Default Hierarchy in the Data Source Administration in the SPM UI for a Dimension. The selected Hierarchy appeared in bold as we selected that as a Default.
    Still after running the report, we are forced to select the hierarchy from the option menu in the SPM UI Report for that particular Dimension. The hierarchy is not getting showed up by default.
    Kindly help.
    Regards,
    Alaap Ghosh

    Hi Alaap,
    What do you have defined as the default hierarchy for that dimension in the user preferences for that user?
    You can set the defaults for all hierarchies in that dialogue.
    Settings -> User Preferences... -> Default Hierarchies tab.
    Kind regards
    Neil

  • Preferences import generates exception.

    Hi!
    So, here is a newbie question:
    Is it possible to use the new preferences API together with JDeveloper9i?
    When I create a simple new project, using J2SE1.4 and do something like this:
    try
    Preferences.importPreferences( new FileInputStream( "C:\\JDev9i\\jdev\\mywork\\System.xml" ) );
    catch (Exception ex)
    ex.printStackTrace();
    everything works okay. When I try to use the very same lines in my JClient client project, accessing a BC4J module in local deployment (no app server), I get an exception:
    java.lang.ClassCastException: oracle.xml.parser.v2.DTD
         at java.util.prefs.XmlSupport.importPreferences(XmlSupport.java:182)
         at java.util.prefs.Preferences.importPreferences(Preferences.java:1138)
         at test.Untitled1.<init>(Untitled1.java:38)
         at test.Untitled1.main(Untitled1.java:68)
    Has anyone else experienced this? In my simple project it works, in my real project I get an exception. The Oracle XML parser is not part of either project.
    Thanx in advance for your help!
    Sascha Herrmann

    I think there are a couple of things going on here.
    [list=1]
    [*] is that while parsing the Text.xml file, our XML parser is opening the DTD referenced in the DOCTYPE which it must do to see if the DTD has any default attribute values which need to be included in the parsed tree representation).
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE preferences SYSTEM 'http://java.sun.com/dtd/preferences.dtd'>
    <preferences EXTERNAL_XML_VERSION="1.0">
      <root type="user">
        <map />
        <node name="Test">
          <map>
            <entry key="TestEntry" value="true" />
          </map>
        </node>
      </root>
    </preferences>If you don't have your proxy server set correctly, then the attempt to fetch the DTD at it's SYSTEM id URI: http://java.sun.com/dtd/preferences.dtd will hang, and then ultimately fail.
    [*] There is a bug in the JDK 1.4 java.util.prefs.XmlSupport class at line 183:
    ((Element)doc.getChildNodes().item(1)).getAttribute("EXTERNAL_XML_VERSION");.
    where they are making a (bold, and bad) assumption that the 2nd child node of the document object IS the document element. This is not necessary true, and in fact with both Oracle XML Parser 9.0.2 and Apache Xerces 2.1.0 that I tested, it's a bad assumption since both of these JAXP 1.1 compliant XML Parsers fail the simple test example class of:
    import java.io.FileInputStream;
    import java.util.prefs.Preferences;
    public class Test {
    public static void main(String[] args) throws Throwable {
          Preferences.importPreferences(
                        new FileInputStream( "C:\\temp\\sacha\\PrefsTest\\Test.xml" ) );
          System.out.println("ok");
    At line 183 when XmlSupport tries to cast the 2nd child of the document node to (Element), Xerces 2.1.0 fails with
    java.lang.ClassCastException: org.apache.xerces.dom.DeferredCommentImpl.
    and Oracle XML Parser 9.0.2 fails with:
    java.lang.ClassCastException: oracle.xml.parser.v2.DTD.
    they should have written instead:
    String xmlVersion = doc.getDocumentElement().getAttribute("EXTERNAL_XML_VERSION");.
    instead of what they did.
    [list]
    Of course, it works OK when you use the Sun Crimson XML parser which is included by default in the JDK 1.4, and apparently that's the only one they tested.
    However, JClient requires the Oracle XML Parser so you need to use the Oracle XML Parser implementation of JAXP 1.1 (which should work fine, except for this bug). I patched the java.util.XmlSupport class, and prepended my fixed version of this class to the System classpath by adding the following Java VM command line parameter:
    -Xbootclasspath/p:C:\temp\xmlsupportfix\classes.
    and then I'm able to run your Client example with no problems.
    Not sure if Sun knows about this bug, but I'll look into it.
    I've attached my patched version of this JDK 1.4 class. I changed like 183 and line 192 (which had another use of the "bad assumption" DOM code.) Here it is:
    * @(#)XmlSupport.java  1.10 01/12/03
    * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
    * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    package java.util.prefs;
    import java.util.*;
    import java.io.*;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.w3c.dom.*;
    import org.apache.crimson.tree.*;
    * XML Support for java.util.prefs. Methods to import and export preference
    * nodes and subtrees.
    * @author  Josh Bloch and Mark Reinhold
    * @version 1.10, 12/03/01
    * @see     Preferences
    * @since   1.4
    class XmlSupport {
        // The required DTD URI for exported preferences
        private static final String PREFS_DTD_URI =
            "http://java.sun.com/dtd/preferences.dtd";
        // The actual DTD corresponding to the URI
        private static final String PREFS_DTD =
            "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
            "<!-- DTD for preferences -->"               +
            "<!ELEMENT preferences (root) >"             +
            "<!ATTLIST preferences"                      +
            " EXTERNAL_XML_VERSION CDATA \"0.0\"  >"     +
            "<!ELEMENT root (map, node*) >"              +
            "<!ATTLIST root"                             +
            "          type (system|user) #REQUIRED >"   +
            "<!ELEMENT node (map, node*) >"              +
            "<!ATTLIST node"                             +
            "          name CDATA #REQUIRED >"           +
            "<!ELEMENT map (entry*) >"                   +
            "<!ATTLIST map"                              +
            "  MAP_XML_VERSION CDATA \"0.0\"  >"         +
            "<!ELEMENT entry EMPTY >"                    +
            "<!ATTLIST entry"                            +
            "          key CDATA #REQUIRED"              +
            "          value CDATA #REQUIRED >"          ;
         * Version number for the format exported preferences files.
        private static final String EXTERNAL_XML_VERSION = "1.0";
         * Version number for the internal map files.
        private static final String MAP_XML_VERSION = "1.0";
         * Export the specified preferences node and, if subTree is true, all
         * subnodes, to the specified output stream.  Preferences are exported as
         * an XML document conforming to the definition in the Preferences spec.
         * @throws IOException if writing to the specified output stream
         *         results in an <tt>IOException</tt>.
         * @throws BackingStoreException if preference data cannot be read from
         *         backing store.
         * @throws IllegalStateException if this node (or an ancestor) has been
         *         removed with the {@link #removeNode()} method.
        static void export(OutputStream os, final Preferences p, boolean subTree)
            throws IOException, BackingStoreException {
            if (((AbstractPreferences)p).isRemoved())
                throw new IllegalStateException("Node has been removed");               
            XmlDocument doc = new XmlDocument();
            doc.setDoctype(null, PREFS_DTD_URI, null);
            Element preferences =  (Element)
                doc.appendChild(doc.createElement("preferences"));
            preferences.setAttribute("EXTERNAL_XML_VERSION", EXTERNAL_XML_VERSION);
            Element xmlRoot =  (Element)
            preferences.appendChild(doc.createElement("root"));
            xmlRoot.setAttribute("type", (p.isUserNode() ? "user" : "system"));
            // Get bottom-up list of nodes from p to root, excluding root
            List ancestors = new ArrayList();
            for (Preferences kid = p, dad = kid.parent(); dad != null;
                                       kid = dad, dad = kid.parent()) {
                ancestors.add(kid);
            Element e = xmlRoot;                       
            for (int i=ancestors.size()-1; i >= 0; i--) {
                e.appendChild(doc.createElement("map"));
                e = (Element) e.appendChild(doc.createElement("node"));
                e.setAttribute("name", ((Preferences)ancestors.get(i)).name());
            putPreferencesInXml(e, doc, p, subTree);
            doc.write(os);
         * Put the preferences in the specified Preferences node into the
         * specified XML element which is assumed to represent a node
         * in the specified XML document which is assumed to conform to
         * PREFS_DTD.  If subTree is true, create children of the specified
         * XML node conforming to all of the children of the specified
         * Preferences node and recurse.
         * @throws BackingStoreException if it is not possible to read
         *         the preferences or children out of the specified
         *         preferences node.
        private static void putPreferencesInXml(Element elt, Document doc,
                   Preferences prefs, boolean subTree) throws BackingStoreException
            Preferences[] kidsCopy = null;
            String[] kidNames = null;
            // Node is locked to export its contents and get a
            // copy of children, then lock is released,
            // and, if subTree = true, recursive calls are made on children
            synchronized (((AbstractPreferences)prefs).lock) {
                // Check if this node was concurrently removed. If yes
                // remove it from XML Document and return.
                if (((AbstractPreferences)prefs).isRemoved()) {
                    elt.getParentNode().removeChild(elt);
                    return;
                // Put map in xml element           
                String[] keys = prefs.keys();
                Element map = (Element) elt.appendChild(doc.createElement("map"));
                for (int i=0; i<keys.length; i++) {
                    Element entry = (Element)
                        map.appendChild(doc.createElement("entry"));
                    entry.setAttribute("key", keys);
    // NEXT STATEMENT THROWS NULL PTR EXC INSTEAD OF ASSERT FAIL
    entry.setAttribute("value", prefs.get(keys[i], null));
    // Recurse if appropriate
    if (subTree) {
    /* Get a copy of kids while lock is held */
    kidNames = prefs.childrenNames();
    kidsCopy = new Preferences[kidNames.length];
    for (int i = 0; i < kidNames.length; i++)
    kidsCopy[i] = prefs.node(kidNames[i]);
    // release lock
    if (subTree) {
    for (int i=0; i < kidNames.length; i++) {
    Element xmlKid = (Element)
    elt.appendChild(doc.createElement("node"));
    xmlKid.setAttribute("name", kidNames[i]);
    putPreferencesInXml(xmlKid, doc, kidsCopy[i], subTree);
    * Import preferences from the specified input stream, which is assumed
    * to contain an XML document in the format described in the Preferences
    * spec.
    * @throws IOException if reading from the specified output stream
    * results in an <tt>IOException</tt>.
    * @throws InvalidPreferencesFormatException Data on input stream does not
    * constitute a valid XML document with the mandated document type.
    static void importPreferences(InputStream is)
    throws IOException, InvalidPreferencesFormatException
    try {
    Document doc = load(is);
    String xmlVersion =
    // SPM - Fix bad assumption of getChildNodes().item(1)
    doc.getDocumentElement().getAttribute("EXTERNAL_XML_VERSION");
    if (xmlVersion.compareTo(EXTERNAL_XML_VERSION) > 0)
    throw new InvalidPreferencesFormatException(
    "Exported preferences file format version " + xmlVersion +
    " is not supported. This java installation can read" +
    " versions " + EXTERNAL_XML_VERSION + " or older. You may need" +
    " to install a newer version of JDK.");
    // SPM - Fix bad assumption of getChildNodes().item(1)
    Element xmlRoot = (Element)doc.getDocumentElement().getChildNodes().item(0);
    Preferences prefsRoot =
    (xmlRoot.getAttribute("type").equals("user") ?
    Preferences.userRoot() : Preferences.systemRoot());
    ImportSubtree(prefsRoot, xmlRoot);
    } catch(SAXException e) {
    throw new InvalidPreferencesFormatException(e);
    * Load an XML document from specified input stream, which must
    * have the requisite DTD URI.
    private static Document load(InputStream in)
    throws SAXException, IOException
    Resolver r = new Resolver();
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    dbf.setIgnoringElementContentWhitespace(true);
    dbf.setValidating(true);
    dbf.setCoalescing(true);
    try {
    DocumentBuilder db = dbf.newDocumentBuilder();
    db.setEntityResolver(new Resolver());
    db.setErrorHandler(new EH());
    return db.parse(new InputSource(in));
    } catch (ParserConfigurationException x) {
    throw new Error(x);
    * Recursively traverse the specified preferences node and store
    * the described preferences into the system or current user
    * preferences tree, as appropriate.
    private static void ImportSubtree(Preferences prefsNode, Element xmlNode) {
    NodeList xmlKids = xmlNode.getChildNodes();
    int numXmlKids = xmlKids.getLength();
    * We first lock the node, import its contents and get
    * child nodes. Then we unlock the node and go to children
    * Since some of the children might have been concurrently
    * deleted we check for this.
    Preferences[] prefsKids;
    /* Lock the node */
    synchronized (((AbstractPreferences)prefsNode).lock) {
    //If removed, return silently
    if (((AbstractPreferences)prefsNode).isRemoved())
    return;
    // Import any preferences at this node
    Element firstXmlKid = (Element) xmlKids.item(0);
    ImportPrefs(prefsNode, firstXmlKid);
    prefsKids = new Preferences[numXmlKids - 1];
    // Get involved children
    for (int i=1; i < numXmlKids; i++) {
    Element xmlKid = (Element) xmlKids.item(i);
    prefsKids[i-1] = prefsNode.node(xmlKid.getAttribute("name"));
    } // unlocked the node
    // import children
    for (int i=1; i < numXmlKids; i++)
    ImportSubtree(prefsKids[i-1], (Element)xmlKids.item(i));
    * Import the preferences described by the specified XML element
    * (a map from a preferences document) into the specified
    * preferences node.
    private static void ImportPrefs(Preferences prefsNode, Element map) {
    NodeList entries = map.getChildNodes();
    for (int i=0, numEntries = entries.getLength(); i < numEntries; i++) {
    Element entry = (Element) entries.item(i);
    prefsNode.put(entry.getAttribute("key"),
    entry.getAttribute("value"));
    * Export the specified Map<String,String> to a map document on
    * the specified OutputStream as per the prefs DTD. This is used
    * as the internal (undocumented) format for FileSystemPrefs.
    * @throws IOException if writing to the specified output stream
    * results in an <tt>IOException</tt>.
    static void exportMap(OutputStream os, Map map) throws IOException {
    XmlDocument doc = new XmlDocument();
    doc.setDoctype(null, PREFS_DTD_URI, null);
    Element xmlMap = (Element) doc.appendChild(doc.createElement("map"));
    xmlMap.setAttribute("MAP_XML_VERSION", MAP_XML_VERSION);
    for (Iterator i = map.entrySet().iterator(); i.hasNext(); ) {
    Map.Entry e = (Map.Entry) i.next();
    Element xe = (Element)
    xmlMap.appendChild(doc.createElement("entry"));
    xe.setAttribute("key", (String) e.getKey());
    xe.setAttribute("value", (String) e.getValue());
    doc.write(os);
    * Import Map from the specified input stream, which is assumed
    * to contain a map document as per the prefs DTD. This is used
    * as the internal (undocumented) format for FileSystemPrefs. The
    * key-value pairs specified in the XML document will be put into
    * the specified Map. (If this Map is empty, it will contain exactly
    * the key-value pairs int the XML-document when this method returns.)
    * @throws IOException if reading from the specified output stream
    * results in an <tt>IOException</tt>.
    * @throws InvalidPreferencesFormatException Data on input stream does not
    * constitute a valid XML document with the mandated document type.
    static void importMap(InputStream is, Map m)
    throws IOException, InvalidPreferencesFormatException
    try {
    Document doc = load(is);
    Element xmlMap = (Element) doc.getChildNodes().item(1);
    // check version
    String mapVersion = xmlMap.getAttribute("MAP_XML_VERSION");
    if (mapVersion.compareTo(MAP_XML_VERSION) > 0)
    throw new InvalidPreferencesFormatException(
    "Preferences map file format version " + mapVersion +
    " is not supported. This java installation can read" +
    " versions " + MAP_XML_VERSION + " or older. You may need" +
    " to install a newer version of JDK.");
    NodeList entries = xmlMap.getChildNodes();
    for (int i=0, numEntries=entries.getLength(); i<numEntries; i++) {
    Element entry = (Element) entries.item(i);
    m.put(entry.getAttribute("key"), entry.getAttribute("value"));
    } catch(SAXException e) {
    throw new InvalidPreferencesFormatException(e);
    private static class Resolver implements EntityResolver {
    public InputSource resolveEntity(String pid, String sid)
    throws SAXException
    if (sid.equals(PREFS_DTD_URI)) {
    InputSource is;
    is = new InputSource(new StringReader(PREFS_DTD));
    is.setSystemId(PREFS_DTD_URI);
    return is;
    throw new SAXException("Invalid system identifier: " + sid);
    private static class EH implements ErrorHandler {
    public void error(SAXParseException x) throws SAXException {
    throw x;
    public void fatalError(SAXParseException x) throws SAXException {
    throw x;
    public void warning(SAXParseException x) throws SAXException {
    throw x;

  • I am trying to activate root account on my MAC.  The directions I've seen do not match what is in System Preference for Accounts or Users

    I am trying to activate the root account on my new Mac Book Pro.  The instructions that I have found do not match what I have in System Preferences.  What is the process when using Users and Groups.  When I click on Join the Network Account Server- Open Directory Utility I don't see a option to  activate root user as the instructions say at http://support.apple.com/kb/HT1528
    OS X Lion
    From the Apple menu choose System Preferences....
    From the View menu choose Users & Groups.
    Click the lock and authenticate as an administrator account.
    Click Login Options....
    Click the "Edit..." or "Join..." button at the bottom right.
    Click the "Open Directory Utility..." button.
    Click the lock in the Directory Utility window.
    Enter an administrator account name and password, then click OK.
    Choose Enable Root User from the Edit menu.
    Enter the root password you wish to use in both the Password and Verify fields, then click OK.

    Do you mean you cannot select "Enable Root User" from the "Edit" menu as shown below?
    Why do you think you need to enable the root user? I've never needed it in the history of OS X.

  • Receiving an error as a open Sharing Preferences Pane.. Any idea?

    When I click on Sharing Preferences Pane I receive an error with heading "Preferences Error" and a quote "There was an error in Sharing Preferences" ..and closes  itself.. Cannot open the sharing preferences.. Crash log is below.. How can I fix this?
    Process:               com.apple.preferences.sharing.remoteservice [558]
    Path:                  /System/Library/PreferencePanes/SharingPref.prefPane/Contents/XPCServices/com.a pple.preferences.sharing.remoteservice.xpc/Contents/MacOS/com.apple.preferences. sharing.remoteservice
    Identifier:            com.apple.preferences.sharing.remoteservice
    Version:               1.0 (1)
    Build Info:            SharingPref-260000000000000~26
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           System Preferences [543]
    User ID:               501
    Date/Time:             2014-12-04 12:52:52.542 +0200
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        D805BDF0-DCA0-64EF-2824-AC8E162D92E4
    Time Awake Since Boot: 560 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x00006e4e91fdbec0
    VM Regions Near 0x6e4e91fdbec0:
        MALLOC_NANO            0000608000000000-0000608000a00000 [ 10.0M] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            00007fcd68c00000-00007fcd69000000 [ 4096K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc_msgSend() selector name: isEqual:
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x00007fff856a30dd objc_msgSend + 29
    1   com.apple.preferences.sharing 0x0000000109526d3c 0x10951c000 + 44348
    2   com.apple.AppKit               0x00007fff8bbec144 -[NSTableView preparedCellAtColumn:row:] + 1637
    3   com.apple.AppKit               0x00007fff8bbeb9ac -[NSTableView _drawContentsAtRow:column:withCellFrame:] + 44
    4   com.apple.AppKit               0x00007fff8bbeb6dc -[NSTableView drawRow:clipRect:] + 1655
    5   com.apple.AppKit               0x00007fff8bbeaf05 -[NSTableView drawRowIndexes:clipRect:] + 831
    6   com.apple.AppKit               0x00007fff8bacdd6b -[NSTableView drawRect:] + 1559
    7   com.apple.AppKit               0x00007fff8bab3a09 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1186
    8   com.apple.AppKit               0x00007fff8bab3458 __46-[NSView(NSLayerKitGlue) drawLayer:inContext:]_block_invoke + 218
    9   com.apple.AppKit               0x00007fff8bab31f1 -[NSView(NSLayerKitGlue) _drawViewBackingLayer:inContext:drawingHandler:] + 2407
    10  com.apple.AppKit               0x00007fff8bab2873 -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 108
    11  com.apple.QuartzCore           0x00007fff8ee9a153 CABackingStoreUpdate_ + 3306
    12  com.apple.QuartzCore           0x00007fff8ee99463 ___ZN2CA5Layer8display_Ev_block_invoke + 59
    13  com.apple.QuartzCore           0x00007fff8ee9941f x_blame_allocations + 81
    14  com.apple.QuartzCore           0x00007fff8ee98f1c CA::Layer::display_() + 1546
    15  com.apple.AppKit               0x00007fff8bab274f _NSBackingLayerDisplay + 617
    16  com.apple.AppKit               0x00007fff8ba88506 -[_NSViewBackingLayer display] + 834
    17  com.apple.QuartzCore           0x00007fff8ee98641 CA::Layer::display_if_needed(CA::Transaction*) + 603
    18  com.apple.QuartzCore           0x00007fff8ee97d7d CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
    19  com.apple.QuartzCore           0x00007fff8ee9750e CA::Context::commit_transaction(CA::Transaction*) + 242
    20  com.apple.QuartzCore           0x00007fff8ee97164 CA::Transaction::commit() + 390
    21  com.apple.QuartzCore           0x00007fff8eea7f55 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 71
    22  com.apple.CoreFoundation       0x00007fff8b5d0d87 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    23  com.apple.CoreFoundation       0x00007fff8b5d0ce0 __CFRunLoopDoObservers + 368
    24  com.apple.CoreFoundation       0x00007fff8b5c2858 CFRunLoopRunSpecific + 328
    25  com.apple.HIToolbox           0x00007fff8a84443f RunCurrentEventLoopInMode + 235
    26  com.apple.HIToolbox           0x00007fff8a8441ba ReceiveNextEventCommon + 431
    27  com.apple.HIToolbox           0x00007fff8a843ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    28  com.apple.AppKit               0x00007fff8b9836d1 _DPSNextEvent + 964
    29  com.apple.AppKit               0x00007fff8b982e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    30  com.apple.ViewBridge           0x00007fff8b0efe0e -[NSViewServiceApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 70
    31  com.apple.AppKit               0x00007fff8b976e23 -[NSApplication run] + 594
    32  com.apple.AppKit               0x00007fff8b9622d4 NSApplicationMain + 1832
    33  libxpc.dylib                   0x00007fff92bfeef2 _xpc_objc_main + 793
    34  libxpc.dylib                   0x00007fff92c00a9d xpc_main + 490
    35  com.apple.ViewBridge           0x00007fff8b13e165 -[NSXPCSharedListener resume] + 16
    36  com.apple.ViewBridge           0x00007fff8b0f2ff7 NSViewServiceApplicationMain + 1892
    37  com.apple.frameworks.preferencepanes 0x00007fff8e56b15d PreferencePaneMain + 168
    38  com.apple.preferences.sharing.remoteservice 0x0000000105593c92 main + 37
    39  libdyld.dylib                 0x00007fff8fe345c9 start + 1
    Thread 1:
    0   libsystem_kernel.dylib         0x00007fff92cff946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff894324a1 start_wqthread + 13
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff92cff946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff894324a1 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff92d0022e kevent64 + 10
    1   libdispatch.dylib             0x00007fff93e5ea6a _dispatch_mgr_thread + 52
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff92cff946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff894324a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff92cff946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff894324a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff92cff946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff894324a1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff92cfa52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff92cf969f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8b5c3b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8b5c2fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8b5c2838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff8bae67a7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff894342fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff89434279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff894324b1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0xbaddee4e91fdbead  rbx: 0x000060800023e4a0  rcx: 0xbaddee4e91fdbead  rdx: 0x00006080002207a0
      rdi: 0x000060800023e4a0  rsi: 0x00007fff8c2d6724  rbp: 0x00007fff5a669a90  rsp: 0x00007fff5a669a68
       r8: 0x000000000000007f   r9: 0x00006080002208c0  r10: 0x00007fff8c2d6724  r11: 0x00006e4e91fdbea8
      r12: 0x0000000000000000  r13: 0x00007fff856aaac0  r14: 0x00006080002207a0  r15: 0x00007fff75deb7a8
      rip: 0x00007fff856a30dd  rfl: 0x0000000000010202  cr2: 0x00006e4e91fdbec0
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x105593000 -        0x105593fff  com.apple.preferences.sharing.remoteservice (1.0 - 1) <6EB135C3-ACB2-38EC-89C9-E42E58B6D118> /System/Library/PreferencePanes/SharingPref.prefPane/Contents/XPCServices/com.a pple.preferences.sharing.remoteservice.xpc/Contents/MacOS/com.apple.preferences. sharing.remoteservice
           0x10951c000 -        0x109555ff7  com.apple.preferences.sharing (13.0 - 13.0) <FB549161-9867-32A7-ACE2-42FDAB9038A3> /System/Library/PreferencePanes/SharingPref.prefPane/Contents/MacOS/SharingPref
           0x109572000 -        0x109584fff  com.apple.frameworks.preferencepanessupport (13.0 - 13.0) <41164AC3-82FF-351B-91C6-7CD19CB13F57> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
        0x7fff61d1f000 -     0x7fff61d55837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff85101000 -     0x7fff85105fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff85106000 -     0x7fff85177ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85178000 -     0x7fff856a1ff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff856a2000 -     0x7fff85887267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff85888000 -     0x7fff858b8fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff85906000 -     0x7fff85965ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff85966000 -     0x7fff859b7ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff859b8000 -     0x7fff85c9fffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff85ca0000 -     0x7fff85ccefff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff85cd8000 -     0x7fff85cebff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff85fa8000 -     0x7fff85fb3ff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff85fb4000 -     0x7fff85fceff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff85fcf000 -     0x7fff860e7ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff860e8000 -     0x7fff8615cfff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff861c8000 -     0x7fff861c8fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff861c9000 -     0x7fff86443fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86444000 -     0x7fff8651aff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff86522000 -     0x7fff8656fff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff86570000 -     0x7fff86595ff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff86596000 -     0x7fff865abfff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff865f9000 -     0x7fff8668dfff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8668e000 -     0x7fff866acff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff866ad000 -     0x7fff866b5ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff866b6000 -     0x7fff866c3fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff866c4000 -     0x7fff86745ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff86746000 -     0x7fff8678cff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff8678d000 -     0x7fff867c5ffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff86807000 -     0x7fff8682bff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8682c000 -     0x7fff86839fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff86895000 -     0x7fff86912fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff86913000 -     0x7fff8692dff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff86934000 -     0x7fff86a56ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff86a57000 -     0x7fff86a5efff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff86b78000 -     0x7fff86b86ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff86b87000 -     0x7fff86bd3ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff86bd4000 -     0x7fff86c42ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff86c43000 -     0x7fff86c58ff7  com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff87c1c000 -     0x7fff87c1dffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff87c1e000 -     0x7fff87eedff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff87ef9000 -     0x7fff87f01fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff87f02000 -     0x7fff87f08ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff885d0000 -     0x7fff88659fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88721000 -     0x7fff887feff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8887d000 -     0x7fff88894ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff88895000 -     0x7fff88987ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff88988000 -     0x7fff8898afff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff88a13000 -     0x7fff88a15fff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff88a23000 -     0x7fff88a24ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff88a25000 -     0x7fff88a54fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff88a55000 -     0x7fff88a55fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8939f000 -     0x7fff89430fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff89431000 -     0x7fff8943afff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8943b000 -     0x7fff89927fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff89928000 -     0x7fff89945ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8995f000 -     0x7fff899ebfff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff899ec000 -     0x7fff89a26ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff89a27000 -     0x7fff89a78ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff89a79000 -     0x7fff89a94ff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff89a95000 -     0x7fff89a98ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff89abe000 -     0x7fff89abefff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff89abf000 -     0x7fff89ac1ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff89adb000 -     0x7fff89b28ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff89b29000 -     0x7fff89b42fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89b43000 -     0x7fff89b48ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff89b49000 -     0x7fff89b50ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff89b92000 -     0x7fff89c28ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff89c29000 -     0x7fff89c32fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff89c33000 -     0x7fff89c3dff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff89d2c000 -     0x7fff89d48ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff89d4e000 -     0x7fff89d60ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff8a016000 -     0x7fff8a056ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a061000 -     0x7fff8a08cfff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8a08d000 -     0x7fff8a098ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8a099000 -     0x7fff8a345fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8a346000 -     0x7fff8a371fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8a38e000 -     0x7fff8a480fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8a481000 -     0x7fff8a48aff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff8a5c2000 -     0x7fff8a5fbfff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8a5fc000 -     0x7fff8a7e1ff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff8a7e2000 -     0x7fff8a7f3ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8a7f4000 -     0x7fff8a7f7fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8a7f8000 -     0x7fff8a805ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8a806000 -     0x7fff8a811ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
        0x7fff8a812000 -     0x7fff8a815fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8a816000 -     0x7fff8ab18fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8ab19000 -     0x7fff8ab1bff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8ab1c000 -     0x7fff8ab24ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff8ab25000 -     0x7fff8ac3cfe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8ac3d000 -     0x7fff8ac3efff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8ac50000 -     0x7fff8ac50ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8ac51000 -     0x7fff8acacfff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8acad000 -     0x7fff8acb0ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8acb1000 -     0x7fff8acb4fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8acb5000 -     0x7fff8acbeff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8ad3a000 -     0x7fff8ad3efff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff8ad3f000 -     0x7fff8ad44ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff8ad45000 -     0x7fff8ad68fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8ad69000 -     0x7fff8adb5fff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8adb6000 -     0x7fff8af14ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8af15000 -     0x7fff8af40ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8af41000 -     0x7fff8af87ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8af88000 -     0x7fff8b000ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8b003000 -     0x7fff8b0e6fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b0e7000 -     0x7fff8b16bff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8b16c000 -     0x7fff8b17cff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8b1e2000 -     0x7fff8b21afff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b21b000 -     0x7fff8b243fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff8b281000 -     0x7fff8b282fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8b283000 -     0x7fff8b289fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8b32c000 -     0x7fff8b337ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff8b338000 -     0x7fff8b338fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8b339000 -     0x7fff8b33afff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff8b524000 -     0x7fff8b550fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8b551000 -     0x7fff8b8e7fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8b8e8000 -     0x7fff8b95efe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff8b95f000 -     0x7fff8c4a0fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c4a1000 -     0x7fff8c5c8fff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8c648000 -     0x7fff8c757ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8c84c000 -     0x7fff8c850fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8c87f000 -     0x7fff8c881ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8c932000 -     0x7fff8c999ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c99a000 -     0x7fff8c9a4ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8c9a5000 -     0x7fff8c9b7ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8c9b8000 -     0x7fff8c9b9ff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
        0x7fff8cb83000 -     0x7fff8cba4fff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8cba5000 -     0x7fff8cbd8ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8cbd9000 -     0x7fff8cc28ff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8cc29000 -     0x7fff8cc2dfff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8cc2e000 -     0x7fff8d081fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d082000 -     0x7fff8d123ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8d124000 -     0x7fff8d151fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8d152000 -     0x7fff8d152ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff8d153000 -     0x7fff8d9aaff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8da15000 -     0x7fff8da1aff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8da1b000 -     0x7fff8da23ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8daa5000 -     0x7fff8daa5fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8daa6000 -     0x7fff8daa6fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8db1c000 -     0x7fff8dd5cff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8dd60000 -     0x7fff8dd60fff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8dd89000 -     0x7fff8e030ff7  com.apple.RawCamera.bundle (6.01 - 766) <A98D8BA2-EC64-36C2-8B71-CF5B8CDBFC97> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8e06e000 -     0x7fff8e10cfff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8e10d000 -     0x7fff8e144ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8e145000 -     0x7fff8e147fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8e171000 -     0x7fff8e172fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8e173000 -     0x7fff8e181ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8e1a6000 -     0x7fff8e201fff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8e202000 -     0x7fff8e271fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8e352000 -     0x7fff8e484ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8e4e8000 -     0x7fff8e523fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8e529000 -     0x7fff8e555fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff8e556000 -     0x7fff8e574fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <C763B730-D6BC-31D3-951A-898BB49C5A3E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8e5db000 -     0x7fff8e5dcfff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8e5dd000 -     0x7fff8e5e5fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8e5f6000 -     0x7fff8e644fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff8e645000 -     0x7fff8e649fff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8e64a000 -     0x7fff8e64efff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8e64f000 -     0x7fff8e77ffff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8e7ab000 -     0x7fff8e7e6fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8e7e7000 -     0x7fff8e853fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8e855000 -     0x7fff8e85aff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8e88c000 -     0x7fff8e88cfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8e88d000 -     0x7fff8e94cfff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8e94d000 -     0x7fff8ea8ffff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff8ea90000 -     0x7fff8ea9cfff  com.apple.Collaboration (71 - 71) <03083C5F-76F2-36D8-8D0C-2F11A95014A1> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8eb5c000 -     0x7fff8eb8eff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8ee21000 -     0x7fff8ee51ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8ee79000 -     0x7fff8ee83fff  com.apple.CaptiveNetworkSupport (13.0 - 1) <D44A799E-C106-3600-BD95-22B05ECCBA02> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/Versions/A/CaptiveNe twork
        0x7fff8ee84000 -     0x7fff8f034ff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f064000 -     0x7fff8f066ff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8f067000 -     0x7fff8f06bff7  com.apple.NetFSServer (2.0 - 1) <954A42B3-0489-3DC8-BB43-ACFC9D3A7DBA> /System/Library/PrivateFrameworks/NetFSServer.framework/Versions/A/NetFSServer
        0x7fff8f06c000 -     0x7fff8f06dff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <A3D84EBD-3007-3A49-BEE5-F05790DCF38E> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8f107000 -     0x7fff8f107fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8f10c000 -     0x7fff8f14dfff  com.apple.framework.corewlankit (4.0 - 400.35) <C5408B27-623E-3B20-A6B1-747937AB8F26> /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/CoreWLANKit
        0x7fff8f35e000 -     0x7fff8f379ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff8f37a000 -     0x7fff8f3e1ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8f3e2000 -     0x7fff8f3edff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8f3ee000 -     0x7fff8f413ff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8f4f0000 -     0x7fff8f4fffff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8f500000 -     0x7fff8f506ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8f697000 -     0x7fff8fa6efe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8fded000 -     0x7fff8fdeffff  libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8fe31000 -     0x7fff8fe34ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff8fe35000 -     0x7fff901a0fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff90207000 -     0x7fff90207ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff902c5000 -     0x7fff902d6ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff902d7000 -     0x7fff902f7fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff9038a000 -     0x7fff906bdff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff906be000 -     0x7fff906d2ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff906d3000 -     0x7fff9078eff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff9078f000 -     0x7fff907e2ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff907f8000 -     0x7fff90811ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90812000 -     0x7fff90852fff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff90853000 -     0x7fff908c7ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff908c8000 -     0x7fff908eeff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff908ef000 -     0x7fff9091fffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90920000 -     0x7fff90b8aff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff90b8b000 -     0x7fff90baafff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff90baf000 -     0x7fff90bb1fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff90be4000 -     0x7fff90be6ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff90c35000 -     0x7fff90c37fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff90c38000 -     0x7fff90d7cff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff90d7d000 -     0x7fff90d87fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff90d88000 -     0x7fff90d90fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff90d99000 -     0x7fff90e38df7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff90e7b000 -     0x7fff90e84fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff90e8c000 -     0x7fff90eb4ffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff90eb5000 -     0x7fff90ee2fff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff90eed000 -     0x7fff9121bff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff91248000 -     0x7fff91678fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff9168e000 -     0x7fff91692ff7  libGIF.dylib (1231) <A349BA73-301E-3EDE-8A31-8ACE827C289E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff916b4000 -     0x7fff91bc7ff3  com.apple.JavaScriptCore (10600 - 10600.1.17) <CE5255CC-E13F-3694-B6DD-5285356BFCC0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91e5f000 -     0x7fff91e66fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff91f6c000 -     0x7fff91f70fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff91f71000 -     0x7fff91f8bff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff91f97000 -     0x7fff91f99ffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff91f9a000 -     0x7fff91fa8fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff91fa9000 -     0x7fff92211ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff92212000 -     0x7fff92216ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff92aac000 -     0x7fff92ac6ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff92ac7000 -     0x7fff92b55ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff92b56000 -     0x7fff92b57ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff92b58000 -     0x7fff92b65ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff92b66000 -     0x7fff92b77fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff92b81000 -     0x7fff92b8cfff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92b8d000 -     0x7fff92b8ffff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff92beb000 -     0x7fff92c13fff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff92c17000 -     0x7fff92c29fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff92c2a000 -     0x7fff92c3eff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff92c3f000 -     0x7fff92c4bff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff92c4c000 -     0x7fff92ca6ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff92ca7000 -     0x7fff92ce8fff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff92ce9000 -     0x7fff92d06fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff92d07000 -     0x7fff92d0eff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff92d0f000 -     0x7fff92e4cfff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff92e4d000 -     0x7fff92e4fff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff92ead000 -     0x7fff92f3eff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff92f3f000 -     0x7fff92f44fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff92f45000 -     0x7fff92f5bff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff92f5c000 -     0x7fff9304fff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff939ac000 -     0x7fff939b2fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff939c0000 -     0x7fff939daff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff939dc000 -     0x7fff939e4ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff93a1b000 -     0x7fff93b0fff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff93b10000 -     0x7fff93b17fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff93b18000 -     0x7fff93b45ffb  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <3646ECEF-1875-31CD-B614-FBE29A7500EF> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
        0x7fff93b46000 -     0x7fff93b62fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff93b7c000 -     0x7fff93d0afff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff93d0b000 -     0x7fff93d58fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff93e5a000 -     0x7fff93e84ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff93e85000 -     0x7fff93e9bff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff93e9c000 -     0x7fff93f5fff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff93f83000 -     0x7fff93facffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff93fb6000 -     0x7fff9400afff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff94018000 -     0x7fff9421bff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff9421c000 -     0x7fff942b1ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff942b2000 -     0x7fff942bdfff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff943cf000 -     0x7fff94475fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Librar

    Seems that I only receive this error when I try to open File Sharing..

  • System Preferences quit unexpectedly every time I tried to open User Accounts

    Hi there...
    Could you please help me... My MacOSX Lion 10.7.5 could not open User Accounts in System Preferences.. it always quit unexpectedly every time I try to access it.
    Fyi, I've just upgrade MacOSX Lion into 10.7.5 where I didn't have this issue with 10.7.4
    Here is the problem script:
    Process:         System Preferences [4582]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         11.0 (11.0)
    Build Info:      SystemPrefsApp-214009000000000~8
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [232]
    Date/Time:       2012-10-05 22:54:41.272 -0400
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          20693 sec
    Crashes Since Last Report:           1926
    Per-App Interval Since Last Report:  4 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      122855D8-6C99-4356-AC25-F5DA48047646
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    VM Regions Near 0x8:
    -->
        __TEXT                 000000010b4c7000-000000010b4ea000 [  140K] r-x/rwx SM=COW  /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Application Specific Information:
    com.apple.preferences.users v.12.1 (Users & Groups)
    objc[4582]: garbage collection is ON
    FEBufferImage
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff857ec436 CFGetTypeID + 166
    1   com.apple.framework.Admin               0x00007fff8c11cc54 +[NSDictionary(cXMLDataConvertor) dictionaryFromXMLString:] + 151
    2   com.apple.framework.Admin               0x00007fff8c114564 -[User familySettings] + 54
    3   com.apple.preferences.users             0x00000001117aa2b9 0x1117a7000 + 12985
    4   com.apple.preferences.users             0x00000001117aa01c 0x1117a7000 + 12316
    5   com.apple.preferences.users             0x00000001117a9687 0x1117a7000 + 9863
    6   com.apple.preferences.users             0x00000001117a9227 0x1117a7000 + 8743
    7   com.apple.AppKit                        0x00007fff86e22f7e -[NSCustomObject nibInstantiate] + 418
    8   com.apple.AppKit                        0x00007fff86e22d69 -[NSIBObjectData instantiateObject:] + 303
    9   com.apple.AppKit                        0x00007fff86e21fc5 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 347
    10  com.apple.AppKit                        0x00007fff86e188bb loadNib + 322
    11  com.apple.AppKit                        0x00007fff86e17db8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    12  com.apple.AppKit                        0x00007fff86e17cd3 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    13  com.apple.frameworks.preferencepanes          0x00007fff89bbda04 -[NSPreferencePane loadMainView] + 154
    14  com.apple.frameworks.preferencepanes          0x00007fff89bbe954 -[NSPrefPaneBundle instantiatePrefPaneObject] + 438
    15  com.apple.systempreferences             0x000000010b4cf6fc 0x10b4c7000 + 34556
    16  com.apple.systempreferences             0x000000010b4ced32 0x10b4c7000 + 32050
    17  com.apple.Foundation                    0x00007fff8c28b186 __NSFireDelayedPerform + 392
    18  com.apple.CoreFoundation                0x00007fff85832934 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    19  com.apple.CoreFoundation                0x00007fff85832486 __CFRunLoopDoTimer + 534
    20  com.apple.CoreFoundation                0x00007fff85812e11 __CFRunLoopRun + 1617
    21  com.apple.CoreFoundation                0x00007fff85812486 CFRunLoopRunSpecific + 230
    22  com.apple.HIToolbox                     0x00007fff8e8f92bf RunCurrentEventLoopInMode + 277
    23  com.apple.HIToolbox                     0x00007fff8e9004bf ReceiveNextEventCommon + 181
    24  com.apple.HIToolbox                     0x00007fff8e9003fa BlockUntilNextEventMatchingListInMode + 62
    25  com.apple.AppKit                        0x00007fff86e10779 _DPSNextEvent + 659
    26  com.apple.AppKit                        0x00007fff86e1007d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    27  com.apple.AppKit                        0x00007fff86e0c9b9 -[NSApplication run] + 470
    28  com.apple.AppKit                        0x00007fff87088eac NSApplicationMain + 867
    29  com.apple.systempreferences             0x000000010b4c8b30 0x10b4c7000 + 6960
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8a0e27e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff85164786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff85163316 _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 5:: Dispatch queue: com.apple.coreimage.FEVirtualMemoryCache
    0   libsystem_kernel.dylib                  0x00007fff8a0e067a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a0dfd71 mach_msg + 73
    2   libsystem_kernel.dylib                  0x00007fff8a0dddc9 vm_purgable_control + 140
    3   com.apple.CoreImage                     0x00007fff81f03151 __addPointer_block_invoke_0 + 190
    4   libdispatch.dylib                       0x00007fff85162a82 _dispatch_call_block_and_release + 18
    5   libdispatch.dylib                       0x00007fff851642d2 _dispatch_queue_drain + 264
    6   libdispatch.dylib                       0x00007fff8516412e _dispatch_queue_invoke + 54
    7   libdispatch.dylib                       0x00007fff85163928 _dispatch_worker_thread2 + 198
    8   libsystem_c.dylib                       0x00007fff85dac3da _pthread_wqthread + 316
    9   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-priority
    0   libauto.dylib                           0x00007fff84ca65e1 Auto::Zone::should_collect() + 1
    1   libauto.dylib                           0x00007fff84c91f75 auto_zone_collect + 245
    2   libobjc.A.dylib                         0x00007fff89c8419d objc_collect + 503
    3   libdispatch.dylib                       0x00007fff851639a4 _dispatch_worker_thread2 + 322
    4   libsystem_c.dylib                       0x00007fff85dac3da _pthread_wqthread + 316
    5   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 8:: Dispatch queue: Garbage Collection Work Queue
    0   com.apple.CoreFoundation                0x00007fff857e2a00 CFRelease + 0
    1   com.apple.CoreImage                     0x00007fff81de1b69 image_buffer_finalize(FEBufferImage*) + 118
    2   com.apple.CoreImage                     0x00007fff81de1c11 -[FEBufferImage finalize] + 20
    3   libobjc.A.dylib                         0x00007fff89c8557c finalizeOneObject + 53
    4   libauto.dylib                           0x00007fff84ca907e Auto::foreach_block_do(auto_zone_cursor*, void (*)(void*, void*), void*) + 94
    5   libobjc.A.dylib                         0x00007fff89c854ac batchFinalize + 53
    6   libobjc.A.dylib                         0x00007fff89c855fb batchFinalizeOnTwoThreads + 91
    7   libauto.dylib                           0x00007fff84ca9019 Auto::Zone::invalidate_garbage(unsigned long, void**) + 73
    8   libauto.dylib                           0x00007fff84c967db auto_collect_internal(Auto::Zone*, unsigned int) + 459
    9   libauto.dylib                           0x00007fff84c9221a __auto_zone_collect_block_invoke_0 + 74
    10  libdispatch.dylib                       0x00007fff85162a82 _dispatch_call_block_and_release + 18
    11  libdispatch.dylib                       0x00007fff851642d2 _dispatch_queue_drain + 264
    12  libdispatch.dylib                       0x00007fff8516412e _dispatch_queue_invoke + 54
    13  libdispatch.dylib                       0x00007fff85163928 _dispatch_worker_thread2 + 198
    14  libsystem_c.dylib                       0x00007fff85dac3da _pthread_wqthread + 316
    15  libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8a0e1e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff85d60dea nanosleep + 164
    2   com.apple.Foundation                    0x00007fff8c308ee1 +[NSThread sleepUntilDate:] + 181
    3   com.apple.imageKit                      0x00007fff89753788 -[IKImageCropView preloadThread] + 121
    4   com.apple.Foundation                    0x00007fff8c2d972a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8c2d96a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff85daa8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff85dadb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000087  rdx: 0x0000000000000074
      rdi: 0x0000000000000000  rsi: 0x0000000401168d40  rbp: 0x00007fff6b0c4fc0  rsp: 0x00007fff6b0c4fb0
       r8: 0x0000000401100000   r9: 0x0000000000002f8d  r10: 0x00000000000000c1  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x00007fff732eeef8  r14: 0x0000000401168d40  r15: 0x0000000000000000
      rip: 0x00007fff857ec436  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU: 1
    Binary Images:
           0x10b4c7000 -        0x10b4e9fff  com.apple.systempreferences (11.0 - 11.0) <B3187F74-9420-3080-AD41-C6BC6C95FD05> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x10b5da000 -        0x10b5dbff3 +cl_kernels (??? - ???) <43F02177-49EF-4D13-B7C5-F1D2A199D4A0> cl_kernels
           0x10f621000 -        0x10f62ffff  com.apple.frameworks.opendirectoryconfigui (10.7 - 10.7) <1383F700-AB33-3C69-926C-79367B81E925> /System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework/Versions/A/Op enDirectoryConfigUI
           0x10f63f000 -        0x10f654fff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x10f668000 -        0x10f67cfff  com.apple.OpenDirectoryConfig (10.7 - 55.1) <B863762E-239C-3808-B85A-FEF20FDFA50A> /System/Library/PrivateFrameworks/OpenDirectoryConfig.framework/Versions/A/Open DirectoryConfig
           0x10f6b3000 -        0x10f6bdfef  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <4572AD1E-D1D1-3412-AFCC-D37037B1FAB5> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10f6c3000 -        0x10f6c6ff7  libCoreFSCache.dylib (??? - ???) <0D155750-7910-32C5-8327-924FC1089442> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x110435000 -        0x110435ff1 +cl_kernels (??? - ???) <7FB4D3CD-34E8-4D16-9996-515556951FC9> cl_kernels
           0x110447000 -        0x1104e6ff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <47DA7D73-C52D-322F-A08F-4DB320A65373> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x111737000 -        0x111749ff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <0272C107-5F2D-33C2-958C-913C0E46C86E> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x1117a7000 -        0x111800fff  com.apple.preferences.users (12.1 - 12.1) <FD8A48A1-C498-3C2B-969C-7F2A125DDFFC> /System/Library/PreferencePanes/Accounts.prefPane/Contents/MacOS/Accounts
           0x11182e000 -        0x1118aefff  com.apple.frameworks.server.kit (10.7.2 - 171.11) <97B338D1-07B3-3A96-A1C3-916AABD84736> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
           0x111908000 -        0x11198eff7  com.apple.frameworks.server.foundation (10.7.3 - 185.6) <4719FA2C-6BAB-31F9-B68A-6DBC80FAC996> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x1119ef000 -        0x111a29ff7  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <A131985C-8F2E-3706-957E-89BA1FA6A14E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x111a57000 -        0x111a61fff  com.apple.iokit.IOUSBLib (5.0.0 - 5.0.0) <BC5B59F2-6816-3FC2-8313-38321BF18C51> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
        0x7fff6b0c7000 -     0x7fff6b0fbbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff81d4d000 -     0x7fff81d91ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <B2A38D2C-7E82-34C5-8896-48C37B0E64A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81d92000 -     0x7fff82006fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff82007000 -     0x7fff820f3ff7  com.apple.backup.framework (1.3.5 - 1.3.5) <B25104A3-1CE5-36CA-8F26-0A2DE3F95F70> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff820f4000 -     0x7fff82121fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff82127000 -     0x7fff82162fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff82163000 -     0x7fff8217afff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8217b000 -     0x7fff821ffff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff82200000 -     0x7fff8221ffff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff82220000 -     0x7fff8222efff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff823a2000 -     0x7fff823a7fff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff823a8000 -     0x7fff823beff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff823bf000 -     0x7fff823c0ff7  libsystem_sandbox.dylib (??? - ???) <2A09E4DA-F47C-35CB-B70C-E0492BA9F20E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff823c1000 -     0x7fff82463fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82470000 -     0x7fff82491fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff82d93000 -     0x7fff831c0fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff831c1000 -     0x7fff831e5fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff831e6000 -     0x7fff8324eff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8325d000 -     0x7fff8325dfff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8325e000 -     0x7fff83260fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
        0x7fff83261000 -     0x7fff83bffa27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff83c00000 -     0x7fff840c7fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff84164000 -     0x7fff84171fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84172000 -     0x7fff841e8fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff841e9000 -     0x7fff842d2fff  com.apple.Bluetooth (4.0.8 - 4.0.8f17) <46F432D0-7E25-3900-A5B2-DDB4C2781036> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff842d3000 -     0x7fff842dafff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff8438d000 -     0x7fff843dfff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff843e0000 -     0x7fff843e6fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff843e7000 -     0x7fff84791fe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8479c000 -     0x7fff847c7fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff847c8000 -     0x7fff848c2ff7  com.apple.DiskImagesFramework (10.7.4 - 331.7) <BEBA6D78-08E0-3B99-B77B-A5CBF3344834> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff84981000 -     0x7fff84985fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84986000 -     0x7fff8498dff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8498e000 -     0x7fff849a3fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff849a4000 -     0x7fff849a5ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff849cf000 -     0x7fff849d5ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff849d6000 -     0x7fff849f2ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff84a82000 -     0x7fff84abdfff  com.apple.LDAPFramework (3.2 - 120.2) <275D4298-C435-3E98-AA25-95D9D0A56550> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff84abe000 -     0x7fff84b02ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff84b03000 -     0x7fff84b2cfff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff84b2d000 -     0x7fff84c39fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84c3a000 -     0x7fff84c90fff  libCoreStorage.dylib (??? - ???) <564C1AE4-4669-3D28-9DBF-0256A4341DF9> /usr/lib/libCoreStorage.dylib
        0x7fff84c91000 -     0x7fff84cdffff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff84ce0000 -     0x7fff84d22ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff84d23000 -     0x7fff84d23fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff84d24000 -     0x7fff85142ff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff85143000 -     0x7fff85143fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff85144000 -     0x7fff85150fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff85161000 -     0x7fff8516ffff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
        0x7fff85170000 -     0x7fff85310ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8534f000 -     0x7fff8538efff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8538f000 -     0x7fff85393ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff85394000 -     0x7fff853a8ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff853a9000 -     0x7fff853bcff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff853bd000 -     0x7fff853e8ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff853e9000 -     0x7fff8570eff7  com.apple.AddressBook.framework (6.1.3 - 1091) <5A8BEED1-229C-3A9C-8281-581127A1B9B5> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8570f000 -     0x7fff85756ff7  com.apple.CoreMedia (1.0 - 705.94) <700C6863-7A8F-34FA-8B1D-7659EC95000B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85757000 -     0x7fff857afff7  libTIFF.dylib (??? - ???) <4DA86D53-8977-351D-9DC5-C7AE8F0FD423> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff857da000 -     0x7fff859aeff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff859af000 -     0x7fff859b0fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff859b1000 -     0x7fff859b1fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff859b2000 -     0x7fff859b7fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff859b8000 -     0x7fff859c2fff  libcsfde.dylib (??? - ???) <165F76E5-EE38-3942-82B4-9BCEEF72EB69> /usr/lib/libcsfde.dylib
        0x7fff859c3000 -     0x7fff85aa2fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <E982B3FF-4788-3FA2-B9F1-53E44E2EA9BA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff85aa3000 -     0x7fff85d5bfff  com.apple.RawCamera.bundle (4.00 - 658) <789BC5C7-F03A-388C-B540-070FF5574B0C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff85d5c000 -     0x7fff85e39fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff86b72000 -     0x7fff86bcdff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff86bce000 -     0x7fff86bd1fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff86c5f000 -     0x7fff86c63fff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
        0x7fff86c64000 -     0x7fff86d59fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff86dc1000 -     0x7fff86ddbfff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff86ddc000 -     0x7fff86df8fff  com.apple.ScriptingBridge (1.2.1 - ???) <A4162BA5-2432-3BF3-8EBC-47AEF2BDD8DA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff86df9000 -     0x7fff86dfbfff  com.apple.EFILogin (1.0 - 1) <EA18A476-CB02-3EC6-8B2D-9EA019B2D16E> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff86dfc000 -     0x7fff86e07ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff86e08000 -     0x7fff87a0efff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff87a56000 -     0x7fff87b5bfff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8824d000 -     0x7fff88258ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D836A22C-BBDC-3C9F-83D3-F8CC0EE75885> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88281000 -     0x7fff88286fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff88287000 -     0x7fff88295ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
        0x7fff882e3000 -     0x7fff88359fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8835a000 -     0x7fff883a6ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff883a7000 -     0x7fff883b2ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff88844000 -     0x7fff88846fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff88847000 -     0x7fff8884bfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff8884c000 -     0x7fff8884dfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff8884e000 -     0x7fff888e1fff  com.apple.PDFKit (2.6.4 - 2.6.4) <4C58283C-3F45-31C6-9896-5EFFFF82D840> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff888e2000 -     0x7fff88944ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff88999000 -     0x7fff8899afff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff88a18000 -     0x7fff88a19fff  libwebsharing.dylib (??? - ???) <279415F4-2FAD-3D68-BE9A-691D03389662> /usr/lib/libwebsharing.dylib
        0x7fff88a1a000 -     0x7fff88a9dfef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff88aa2000 -     0x7fff88dbefff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88ddb000 -     0x7fff88dfffff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88e00000 -     0x7fff893e4fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff89673000 -     0x7fff89674fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff896b8000 -     0x7fff896e8ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff896e9000 -     0x7fff89710fff  com.apple.framework.internetaccounts (1.2 - 3) <28D44E21-54F2-366B-B9D9-1DB788EF0278> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff89711000 -     0x7fff89989fff  com.apple.imageKit (2.1.2 - 1.0) <23470050-28FB-3B09-8E27-ADC371B0E4B8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff89acd000 -     0x7fff89adafff  com.apple.CrashReporterSupport (10.7.4 - 353) <6044CFB6-939E-3C73-BFBB-A8BBC096F135> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff89adb000 -     0x7fff89bb9fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff89bba000 -     0x7fff89bd6fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff89bd7000 -     0x7fff89be3fff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff89c03000 -     0x7fff89c4ffff  com.apple.GraphKit (1.0.5 - 30) <ADC7963A-FC30-3886-984D-BC3CD4C5A4B7> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
        0x7fff89c70000 -     0x7fff89d54e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8a0a9000 -     0x7fff8a0bbff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8a0bc000 -     0x7fff8a0cafff  com.apple.Collaboration (63.2 - 63.2) <B76A62A5-EE5E-3D7F-8F1D-F80E8E78FFD8> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8a0cb000 -     0x7fff8a0ebfff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8a0ec000 -     0x7fff8a0f7ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8a0f8000 -     0x7fff8a103fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8a104000 -     0x7fff8a160ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8a191000 -     0x7fff8a194fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8a195000 -     0x7fff8a1d5fe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a1d6000 -     0x7fff8a289ff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8a2d3000 -     0x7fff8a36dff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8a36e000 -     0x7fff8ab16fff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8ab28000 -     0x7fff8ab2ffff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8ab30000 -     0x7fff8ab76fff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff8ab8d000 -     0x7fff8ab92fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8ab93000 -     0x7fff8ab9bfff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8ab9c000 -     0x7fff8abc5fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8abc6000 -     0x7fff8ac1afff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8ac1b000 -     0x7fff8ac25ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
        0x7fff8ac26000 -     0x7fff8ad33fff  libJP2.dylib (??? - ???) <053950A7-6B92-320E-A6D7-808CE424F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ad34000 -     0x7fff8adfbff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8adfc000 -     0x7fff8ae5cfff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8ae5d000 -     0x7fff8ae85fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8ae86000 -     0x7fff8afbcfff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8afbd000 -     0x7fff8b0a1ff7  com.apple.CoreServices.OSServices (478.49 - 478.49) <E5BF2069-ED1A-31F5-AFC2-4A530BD467AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8b22d000 -     0x7fff8b22ffff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b230000 -     0x7fff8b230fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8b231000 -     0x7fff8b232ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8b242000 -     0x7fff8b27cfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8b27d000 -     0x7fff8b2aafe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff8b2ab000 -     0x7fff8b2acfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b49d000 -     0x7fff8b4f0fff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b4f1000 -     0x7fff8b71bfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b71c000 -     0x7fff8b71cfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8b71d000 -     0x7fff8b723fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8b724000 -     0x7fff8b724fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b725000 -     0x7fff8ba1aff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8ba1b000 -     0x7fff8ba32fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ba33000 -     0x7fff8ba40ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff8ba41000 -     0x7fff8ba4aff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8ba4b000 -     0x7fff8ba52fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8ba53000 -     0x7fff8ba94fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ba95000 -     0x7fff8bec8ff7  com.apple.VideoToolbox (1.0 - 705.94) <72AD524C-0616-3C69-BA1F-8D444F97F5A2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8bec9000 -     0x7fff8bed8fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8c046000 -     0x7fff8c0e7fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8c0ec000 -     0x7fff8c0f1fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8c0f2000 -     0x7fff8c104ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8c10e000 -     0x7fff8c13efff  com.apple.framework.Admin (11.0 - 11.0) <66A06B83-01D1-371E-8A77-4280570BB97D> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8c13f000 -     0x7fff8c240fff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8c241000 -     0x7fff8c241fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c242000 -     0x7fff8c242fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c243000 -     0x7fff8c27cfe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8c27d000 -     0x7fff8c27efff  com.apple.ServerInformation (1.0 - 1) <D95BC225-E33B-32BC-9FEE-77423F8D7EBC> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8c27f000 -     0x7fff8c598fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8c599000 -     0x7fff8c5ccff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8c5cd000 -     0x7fff8c648ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c649000 -     0x7fff8c6dfff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8c6e0000 -     0x7fff8c6fdfff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8c6fe000 -     0x7fff8c702fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <35D606B1-7AD9-38E3-A2A9-E92B904BDDE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8c706000 -     0x7fff8c808fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8c81e000 -     0x7fff8c88efff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c88f000 -     0x7fff8c921ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8c922000 -     0x7fff8c94eff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8c94f000 -     0x7fff8caacfff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8cd1a000 -     0x7fff8cd1afff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8cdaa000 -     0x7fff8d0ccfff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <3A04B8FC-CFA6-3AEB-8FDF-B0525B5A4C82> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8d0cd000 -     0x7fff8d11eff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8d13c000 -     0x7fff8d13ffff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8d140000 -     0x7fff8d194ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8d19b000 -     0x7fff8d19dff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8d19e000 -     0x7fff8d305fff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8d306000 -     0x7fff8d315ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff8d316000 -     0x7fff8d381ff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d5ca000 -     0x7fff8d632ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8d633000 -     0x7fff8d639ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8d63a000 -     0x7fff8d737ff7  com.apple.avfoundation (2.0 - 180.50) <A2EAE4E6-4DBA-3AAB-A387-7E72B93B6DA9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8d738000 -     0x7fff8d73efff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d8bc000 -     0x7fff8da47ff7  com.apple.QTKit (7.7.1 - 2339) <2BC2CF44-CEAF-3D3B-A250-CA59D6AFB0B0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8da48000 -     0x7fff8daedfff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8daee000 -     0x7fff8db0bff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8db0c000 -     0x7fff8db82ff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
        0x7fff8dbbf000 -     0x7fff8dbd1ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8dc75000 -     0x7fff8dc7aff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8dc7b000 -     0x7fff8dc7bfff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8dc7c000 -     0x7fff8dcb1fff  com.apple.securityinterface (5.0 - 55022.6) <4D6DAF8F-7873-3992-A6D6-478C7664FA39> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8dcb2000 -     0x7fff8dcb5ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8dcb6000 -     0x7fff8dd13ff7  com.apple.QuickLookFramework (3.2 - 500.18) <C36371BF-E1F6-3DF7-83EA-CE96FCDCE4C4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8dd53000 -     0x7fff8dd93ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
        0x7fff8dd94000 -     0x7fff8deadfff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8deb2000 -     0x7fff8e123fff  com.apple.QuartzComposer (5.0 - 236.10) <F8560AEC-4E26-3A43-BE0A-B20FCB5B2E7D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8e124000 -     0x7fff8e13afff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8e13b000 -     0x7fff8e1c0ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8e546000 -     0x7fff8e5a1fff  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <9F7C4D81-5CC7-3D66-AC66-81EA9A5EAB94> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8e5a2000 -     0x7fff8e615fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8e616000 -     0x7fff8e818fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
        0x7fff8e819000 -     0x7fff8e83ffff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8e8a8000 -     0x7fff8e8abfff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8e8ac000 -     0x7fff8e8f5ff7  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <D2101093-0B35-3B90-B511-E9272400ED9B> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8e8f7000 -     0x7fff8ec23fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8ec24000 -     0x7fff8ed2bfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8ed2c000 -     0x7fff8ed2dfff  libodfde.dylib (??? - ???) <9725455E-BA0B-3371-8570-CFE50D3BDA84> /usr/lib/libodfde.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 3536
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=194.2M resident=89.5M(46%) swapped_out_or_unallocated=104.7M(54%)
    Writable regions: Total=16.1G written=167.8M(1%) resident=189.2M(1%) swapped_out=0K(0%) unallocated=15.9G(99%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2372K
    CG image                             16K
    CG raster data                      280K
    CG shared images                   3448K
    CoreImage                            24K
    CoreServices                       1896K
    MALLOC                            603.1M
    MALLOC (reserved)                  15.5G        reserved VM address space (unallocated)
    MALLOC guard page                    64K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       72K
    OpenCL                               20K
    STACK GUARD                        56.0M

    Rempleseed,
    Is it an option to go back to an earlier time/state of the computer, obviously, after securing any files that may disappear (if you have them on your main harddisk)?

  • Using RealPlayer (dialup) - How can I give N/W preference to it's buffer?

    4-25-06
    Is there a "safe" way to configure the machine so that "1st preference"
    is given to keeping the RealPlayer buffer full (listening to radio stream)?
    I use 56Kb dialup and don't mind slowing down e.g. Safari etc but don't
    want the radio stream to be interrupted.
    Have UDP ports 7070-7071 opened in Sys Pref's and tell RealPlayer to
    use them. I also buffer 500 seconds in RealPlayer. Still, it's buffer gets
    empty (stream is at 20+ Kbps and modem is at about 45+ Kbps).
    Maybe there is a better forum to post this at discussions?
    eMac, 10.3.9, RealPlayer 10 for Mac OS X, 10.0.0 (v331)
    eMac G4 (build 7W98) 125 GHz, 256 MB, 37 GB   Mac OS X (10.3.9)   dialup 56K modem

    just cleaning up my junk

  • System Preferences no longer stick after 10.10.1 update

    I've upgraded from OS X 10.10 to 10.10.1 today.
    The upgrade caused various system preferences to change, and now I cannot change them back.
    While System Preferences.app seems to accept my changes, they are reverted after I quit and restart System Preferences.
    For example:
    Language & Region:
    - I used to have various languages in the list of my preferred languages. Since the update, only German remains in the list. Adding other languages does not stick.
    - My Region is set to Germany - English, which causes german text but english number formats to be used. Changing the number format to german does not stick.
    General:
    - When I click the scroll bar, this now causes the document to move by one page. I used to have the other setting (move to that location), but cannot reenable that.
    - Windows are now closed upon quitting applications. I don't want this, but removing the check box does not stick.
    Does anybody have an idea what the root cause may be and how to fix this?
    With kind regards
    Piers Walter

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • Acrobat Pro 7.1.0: Why don't my preferences save?

    I'm using Acrobat Professional 7.1.0 on Windows Vista 32, lots of disk space, no error messages, etc.
    I'm trying to make some changes to the application preferences: I want the default page display to be continuous, for example. When I exit the application and then re-start it, the changes to the preferences do not persist; they're back to whatever they were before I changed them.
    Does anyone know a solution to this problem?

    Thanks, Bill, but I'm talking about the application preferences (Edit->Preferences), which are accessible and changeable even when there is no open PDF file.
    Let me give an example: in preferences, there is a Startup category that includes the option "Display splash screen." That's clearly an application preference, not a preference associated with a particular file. If I check the box to display the splash screen at startup, then click OK, then go back into preferences, my selection is still there: there's still a check mark next to "Display splash screen" So far, so good.
    I then exit Acrobat and start it up again. The application preferences now show that "Display splash screen" is UNchecked. It didn't save the change I made. IT DID, HOWEVER, remember that when I was last in the application preferences, I was in the Startup category, because that's the category it selects by default. If I choose a different category, say Page Display, exit and then re-start Acrobat, it defaults to the Page Display category but doesn't register any of the changes I made.
    So I'm wondering why my changes to the application preferences aren't sticking. Any other ideas? Is this a bug? An installation problem? It seems to work just fine in all other respects.

  • HP Laserjet P2035n is set to print double-sided, but I can't change it in the preferences

    Last week i downloaded and printed a PDF file. Since then, my HP Laserjet 2035n is set to print double-sided. Here are the details.
    I'm running an HP Pavilion Laptop with Windows 7 Home.
    The printer is set up as a network printer.
    When I try to print something, it stops after one page waiting for me to re-feed the paper manually to print on the other side.
    It's only this laptop that's messed up. My other computer prints fine
    When I go to Printers, right click on the 2035n, and select "Printer Properties" and look at the bottom of the General tab, it reads under Features "Double Sided: Yes"
    If I then click 'Preferences..." and go to the Finishing tab, under Document Options, the box "Print On Both Sides (Manually)" box is unchecked.
    Here's what I've tried:
    I have uninstalled and reinstalled the printer
    I reinstalled the printer drivers
    I have tried reinstalling under a different name
    Any suggestions? Can someone tell me where the printer preferences file is so I can manually delete it then reinstall the printer drivers? Is there a tool for the P2035N to uninstal EVERYTHING related to it?
    Thanks.
    This question was solved.
    View Solution.

    Hi,
    Please try the following settings:
    Right click the printer icon, then click Printer Properties.
    Click the Device Settings tab.
    At the very bottom, uncheck the Allow Manual Duplexing option.
    Now try printing and check for any change.
    Please let me know of any change,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • EPrint Apps, printing Preference​s on an HP Officejet Pro 8600 wireless prntr

    I have a fabulous HP Officejet 8600 series wireless printer that is connected to my home network.  It works beautifully and efficiently!  So far, I've had no issues or problems with it, except for one little tweak that I would prefer to adjust if it is at all possible.  Can I set the print preferences so that when my Apps are printed (either as a scheduled app, or printed directly from the screen on the printer itself) so that they will print on BOTH SIDES OF THE PAPER???  And/or in DRAFT setting, with print on both sides, and with multiple pages per sheet??  I like to use these settings as often as possible to save on paper and ink and the like.   I usually only use the optimal print preferences when its time to produce an essay for school or a flyer or something like that.  If anyone can assist me, I would really appreciate it!!  And... I hope that my question makes sense ;D!!!  Thank you!! Jenni 

    Hi Jenni welcome to the forum
    As I  was checking on the properties and cannot find a way to accomplish this. I will do more research and reach out to some peers if I find someway to do this, if I find a way, I will let you know right away.  Jenni  this will be a good suggestion to make and comming from a from a valued customer HP will put a lot of weight on it. If at any time you need or want to  to get the latest information on the latest news in regards Eprint visit Eprint News.
    Hope this answer your question;
    RobertoR.
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • I had a failure of a dsl modem which inturn destroyed my ethernet port of non isight imac G5.  In attempt to solve the problem I did a clean install of leopard 10.5.4. I am unable to upate to 10.6,.7  or .8 without freezing system network preferences

    Dsl modem failure caused malfunction of ethernet port.  In attempt to solve problem I did a clean instillation of  Leopard 10.5.4 and then update to 10.5.5 with access to internet through apple usb to ethernet adapter.  If I attempt to update software to 10.5.6, .7 or .8 it freezes my network system preferences and computer will no longer shut down.  The network connection assistant also no longer sees a connection to the internet throught the usb/ethernet adapter.  I have checked they systerm Tech tool deluxe which shows no problems and also used hard drive utility on instillation disk which found no problems.  Permissions were also checked as well and no problems noted.  Any thoughts as I really like my imac G5.

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    If all the above fails, then it appears to be time for a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • How to restore preferences on iTunes after an archive & install

    Hi,
    My main HD had some critical problems that needed to be fixed and overcome using Disk Warrior. After that my OS was non-functional, so I proceeded to do an archive & install. Now upon using iTunes, I've always had my iTunes library on a separate HD because of the many thousands of mp3s I have. Now the problem is that with the archive and install I have lost all my star ratings for ALL my tracks plus I've also lost the many, many playlists I created in the past. I made everything according to my preferences over a good number of years and CANNOT face going through it again!
    Is there a .plist file I can salvage from my old system folder that will update my new copy of iTunes?
    Please help I'm pretty desperate here :-P

    I actually found it out going along on my own actually. What I did was make iTunes load with the library from my previous system iTunes folder which for some reason wasn't present on my master HDD. Everything was back to normal like it should be with ratings, settings and all intact \o/
    I actually never bothered looking, but now I realized that iTunes ALWAYS has to make its folders under /Users/xyz user/Music regardless of where the mp3s are stored. I actually didn't realize that the library settings were stored on the master HDD separate to where the mp3s were stored, which was on the slave HDD. Does anyone know why iTunes doesn't just keep all the information together, or migrate that information according to where you want the source of the iTunes library to be?
    Thanks to all who replied to my message, I'm so relieved that it has all been rectified and the unnecessary hassle been thrown out the window!

Maybe you are looking for

  • How to fix Premiere Pro CC 7.2.1 when it stops responding?

    I have a project with 3 sequences. I am having trouble with the 2nd sequence which is mixed AVCHD and QT. I edited several clip assets extensively, enduring some rather long save times but I did edit. I went to the next clip in the timeline and it is

  • Adobe Photoshop Web Photo Gallery

    Dear members, My name is Rotem Katz and I'm a photographer. Recently, I'm having a big problem with my photography site. The site is built by an HTML web pages technique. The Photoshop Web Photo Gallery created 8 galleries for me. [Each category has

  • Developer 6i with patch 18 and oracle 11g connection issue

    hi , I installed Oracle database 11g on server , when login to my application and open any form or report ,get oracle connection user and password what should i do ? please help me

  • Flash Player eats RAM

    Nice job guys. Flash player, when viewing a video, consumes RAM at a ferocious rate. It continues to do so as long as the video is playing. If you watch the same video twice without closing it, it will suck twice as much memory. Watch long enough wit

  • Why won't ai just "Save"

    Sometimes when I'm working on an .ai doc - when I save it, it asks me if I want to replace the original? I'm talking about an file I've been working on, not a new one. I just go Comm Save, as always. It freaks me out a little! Why would ai ask me if