Enum operator overloads not called

Hi,
we are faced with a serious problem of the current Forte C++ compiler version (WS6U2 with actual patches). The following test program shows that the compiler does not accept operator overloads for enums. Instead of this all enums are implicitly converted to int.
The sample compiles and runs fine with three calls to the overloaded operator|() on other compilers such as g++. The funny thing ist that also the unpatched WS6U2 Forte C++ compiler (5.3 2001/05/15) works properly here.
So, what are the concerns of the newer compiler versions from Sun? From our point the code should be accepted by an ISO C++ compliant compiler.
$ cat test.cc
enum BitFlags { BIT0, BIT1 };
BitFlags operator|(BitFlags lhs, BitFlags rhs)
return static_cast<BitFlags>(static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs));
int main(int, char**)
BitFlags a = BIT0 | BIT1; // Error
BitFlags b = BitFlags(BIT0 | BIT1); // OK, but operator|() not called
BitFlags c = ::operator|(BIT0, BIT1); // OK (explicit operator call)
return 0;
$ CC test.cc
"test.cc", line 11: Error: Cannot use int to initialize BitFlags.
1 Error(s) detected.
$ CC -V
CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-07 2002/04/10
Thanks in advance,
Michael v. Szombathely

This regression was not reproducible and works o.k. as of patch 11685-09. So, if you get the current patch 111685-14, this problem is fixed in that patch.

Similar Messages

  • Testcase: enums + operator overloads

    Hallo all,
    we have detected that Forte C++ 5.3 shows up a different behavior with respect to operator overloading of enums. The example below works with Forte C++ 5.2 and g++, but not with Forte C++ 5.3.
    I would also like to know, which one comforming the ISO C++ standard. Thanks in advance.
    cat testcase_enum.ccnamespace Foo
    enum BitFlags
    BIT0 = 1 << 0,
    BIT1 = 1 << 1,
    BIT2 = 1 << 2
    inline
    BitFlags operator|(BitFlags lhs, BitFlags rhs)
    return static_cast<BitFlags>(static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs));
    inline
    BitFlags operator&(BitFlags lhs, BitFlags rhs)
    return static_cast<BitFlags>(static_cast<unsigned>(lhs) & static_cast<unsigned>(rhs));
    void test_func(BitFlags)
    struct Bar { void test_method(BitFlags) {} };
    } // namespace Foo
    int main(int, char**)
    int a = Foo::BIT0 | Foo::BIT1;
    Foo::BitFlags b = Foo::BIT1 | Foo::BIT2;
    Foo::test_func(Foo::BIT1 | Foo::BIT2);
    Foo::test_func(Foo::BIT0 & Foo::BIT1 | Foo::BIT2);
    Foo::Bar bar;
    bar.test_method(Foo::BIT0 | Foo::BIT1);
    return 0;
    CC -c testcase_enum.cc"testcase_enum.cc", line 34: Error: Cannot use int to initialize Foo::BitFlags.
    "testcase_enum.cc", line 35: Error: Formal argument 1 of type Foo::BitFlags in call to Foo::test_func(Foo::BitFlags) is being passed int.
    "testcase_enum.cc", line 36: Error: Formal argument 1 of type Foo::BitFlags in call to Foo::test_func(Foo::BitFlags) is being passed int.
    "testcase_enum.cc", line 39: Error: Formal argument 1 of type Foo::BitFlags in call to Foo::Bar::test_method(Foo::BitFlags) is being passed int.
    4 Error(s) detected.
    CC -V
    CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-06 2002/03/09

    Your code looks ok to me. Comeau http://www.comeaucomputing.com/tryitout (generally very standards conforming) also accepts it.
    It looks like this may have changed with a recent patch, as the CC I have installed accepts this with no warnings.
    CC -V
    CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-02 2001/09/18
    Overloading on enums is standard. From 7.2/4:
    #Each enumeration defines a type that is different from all other types. Following the
    #closing brace of an enum-specifier, each enumerator has the type of its enumeration.
    Possibly Koenig lookup is not working? What happens if you remove namespace Foo?
    Josh Walker

  • Drag And Drop operations do not call custom IRM Protector

    We are developing our own custom IRM Protector, 
    So far we have successfuly integrated our IRM Protector into Sharepoint, and download operations and upload operations do protect and unprotect documents. Also move operations between libraries, through Send To ribbon action, call HrProtect and HrUnprotect
    methods as needed. 
    However, in our test environments, when using drag and drop operations between Libraries or folders, the IRM Protector is not being called at all. We have tried to update our test environments to the latest Cumulative Update, without success. Is there any
    known bug around the drag and drop functionality? 
    If true, Drag and Drop suposes a great security threat, and we cannot deliver our protection product to our customers, as it would mean document protections could be bypassed by a simple sharepoint operation.
    Thanks,

    We are developing our own custom IRM Protector, 
    So far we have successfuly integrated our IRM Protector into Sharepoint, and download operations and upload operations do protect and unprotect documents. Also move operations between libraries, through Send To ribbon action, call HrProtect and HrUnprotect
    methods as needed. 
    However, in our test environments, when using drag and drop operations between Libraries or folders, the IRM Protector is not being called at all. We have tried to update our test environments to the latest Cumulative Update, without success. Is there any
    known bug around the drag and drop functionality? 
    If true, Drag and Drop suposes a great security threat, and we cannot deliver our protection product to our customers, as it would mean document protections could be bypassed by a simple sharepoint operation.
    Thanks,

  • ViClose session not called after Read operation Timeout in an IVI COM driver

    Hi everybody
    I have a small VI sample that is initializaing an IVI COM driver for an OPM instrument, set some parameters into the instrument then is doing a single Read power measurement. My Read operation receives a single parameter called MaxTimeout that user could change depending on his own interest. Inside the Read function I change temporarily the VISA query timeout to user timeout but at the end of Read operation the original VISA session timeout is reverted to its original value before Read operation was called. If the Read operation timeout is long enough for the Read operation to complete ( 100 ms or more) the VI is doing its job and when finished the viClose is called twice for DefaultHandler and for OpenHandler.
    If the Read operation timeout value decrease ( 50 ms) then Read operation could not be completed and a Read Operation Timeout error is thrown from inside this method. This error is then propagated trough Error path until the VI end in a Simple Error Handler. Now on my VI I close all open references to my driver interfaces but I don't know why VISA itself is not calling viClose on the DefaultHandler and OpenHandler as in the case when was no VI error. I could see all these diferences in my NI Spy window and I could post this if that could be of any help. Bear with me cause I am more a C, C++, VB programmer and much less of a LabVIEW programmer. BTW the Error Handling from LabVIEW looks a a little weird and the only sure thing is that I wired in Error In and Error Out path in all my VI calls. What kind of error handling should I perform on the Read method in order for VISA to close properly both OpenHandlers even if there is an error in my VI?
    Thansk
    sorinvalea

    So viClose is not called by VISA after an error takes place in a VI that is calling some operations on an IVI COM driver.
    I discovered that all VI sessions opened trough VI that encountered a timeout error in Read operation and that were not properly closed after VI completed are in fact viClose by the LabView itself when I am closing LabVIEW application.
    So these left over open vi sessions are kept aside by LabVIEW until it closes itself and then clean them one by one by calling viClose on them....

  • Error (2901) The operation did not complete successfully because of a parameter or call sequence that is not valid. (The parameter is incorrect (0x80070057))

    We are trying to convert a physical windows 2003 R2 32 bit server to a VM using VMM 2008 R2 with all updates installed. Each time when we scan the system on VMM, it gets this message: Error (2901) The operation did not complete successfully because of
    a parameter or call sequence that is not valid. (The parameter is incorrect (0x80070057)). If I use disk2vhd.exe to convert only C drive, I get parameter is incorrect. Any ideas?
    Bob Lin, MCSE & CNE Networking, Internet, Routing, VPN Networking, Internet, Routing, VPN Troubleshooting on http://www.ChicagoTech.net How to Install and Configure Windows, VMware, Virtualization and Cisco on http://www.HowToNetworking.com

    Hi Sir,
    >> If I use disk2vhd.exe to convert only C drive, I get parameter is incorrect. Any ideas?
    >> gets this message: Error (2901) The operation did not complete successfully because of a parameter or call sequence that is not valid. (The parameter is incorrect (0x80070057)
    Please refer to following article regarding this error :
    http://blogs.technet.com/b/hugofe/archive/2010/07/09/abe.aspx
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • How can I implement operator overloading in order to concatenate 2 Lists ??

    I figure that this question is very didactic, for users unfamiliar with Operator Overloading.
    My application needs to perform 2 different searches and the results are stored in a List<string>.
    List<string> myList1 = PerformSearchStrategy1();
    List<string> myList2 = PerformSearchStrategy2();
    Next, I need to concatenate the 2 Lists.
    I figured that a very elegant way to code this would be as follows:
    List<string> myOnlyList = PerformSearchStrategy1();
    myOnlyList += PerformSearchStrategy2();
    myOnlyList += PerformSearchStrategy3();
    The problem being that I am barely familiar with operator overloading in C#.
    Can a kind soul please illuminate me and other readers?
    TIA

    You should not use operator overloading for this for a couple of reasons.  But the simplest is that you don't own List<T>, and so can't add operators to it.
    Instead just call AddRange()
    List<t>.AddRange Method </t>
    David
    David http://blogs.msdn.com/b/dbrowne/

  • Function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    I want to call Stored Procedure that return records and output parameter, from CVI
    I can get output parrameter but when I want to get records stream I recieve following wrror:
    function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    in Stored procedure I create table variable and and insert into string values
    when I remove usage of table variable the error desappear

  • Web service handler could not called in client web service

    Hi All,
    I have two web service ServiceA & ServiceB and both implemented in weblogic.
    The ServiceA is SSL enable and protocol is https which is not published by me.
    The ServieB is my web service(wls8.1) and act as client for ServiceA.
    My problem is when i hit my service, its not able set the handler when it call ServiceA but it is invoking the service and giving application exception like authentication error.
    My service file:
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.HandlerRegistry;
    import javax.xml.rpc.handler.soap.SOAPMessageContext;
    import weblogic.webservice.client.SSLAdapterFactory;
    import weblogic.webservice.client.WLSSLAdapter;
    public class HelloService {
    String wsdl = "https://188.122.123.23/RemoetService?WSDL";
    static {
    SSLAdapterFactory factory = SSLAdapterFactory.getDefaultFactory();
    WLSSLAdapter adapter = (WLSSLAdapter) factory.getSSLAdapter();
    adapter.setTrustedCertificatesFile("D:\\lib\\certs
    cacerts");
    factory.setDefaultAdapter(adapter);
    System.setProperty("weblogic.xml.encryption.verbose","true");
    System.setProperty("weblogic.xml.signature.verbose","true");
    System.setProperty("weblogic.webservice.verbose","true");
    public String sayHello(String user) {
    RemoteService_Impl service = new RemoteService_Impl(wsdl);
    RemotePortType port = service.getRemoteServicePort1();
    String namespace = service.getServiceName()
    .getNamespaceURI();
    QName portName = new QName(namespace,
    "RemoteServicePortType");
    HandlerRegistry reg = service.getHandlerRegistry();
    List handlerList = new ArrayList();
    Map map = new HashMap();
    map.put("Username", "user1");
    map.put("Password", "pwd1");
    HandlerInfo info = new HandlerInfo();
    info.setHandlerClass(WSClientHandler .class);
    info.setHandlerConfig(map);
    handlerList.add(info);
    reg.setHandlerChain(portName,(List)handlerList);
    RemoteServiceResponse = port.callMe(name);
    My Handler file:
    package com.test;
    import java.util.Map;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.Handler;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.MessageContext;
    import javax.xml.rpc.handler.soap.SOAPMessageContext;
    import javax.xml.soap.Name;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPException;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.soap.SOAPHeaderElement;
    public class WSClientHandler implements Handler {
    private HandlerInfo handlerInfo;
    public WSClientAuthenticateHandler(){}
    public void init(HandlerInfo hi) {
    System.out.println("Handler init");
    handlerInfo = hi;
    public void destroy() {
    System.out.println("Handler destroy method called");
    handlerInfo = null;
    public QName[] getHeaders() {
    System.out.println("Handler Header method called");
    try {
    Map map = handlerInfo.getHandlerConfig();
    QName[] headers = handlerInfo.getHeaders();
    System.out.println(" Config :"+map);
    for(int i=0;i<headers.length;i++) {
    System.out.println(headers.getLocalPart()+" "+
    headers.toString()+" "+headers.getNamespaceURI());
    }catch(Exception e) {
    e.printStackTrace();
    return handlerInfo.getHeaders();
    public boolean handleRequest(MessageContext mc) {
    SOAPMessageContext smc = (SOAPMessageContext) mc;
    System.out.println("Calling handler class.....................");
    try {
    SOAPEnvelope se = smc.getMessage().getSOAPPart().getEnvelope();
    System.out.println("Calling handler class.....................");
    SOAPHeader soapHeader = se.getHeader();
    Name headerName = se.createName("Security","wsse","http://schemas.xmlsoap.org/ws/2002/07/secext");
    SOAPHeaderElement headerElement = soapHeader.addHeaderElement(headerName);
    SOAPElement element = headerElement.addChildElement(se.createName("UsernameToken", "wsse", "http://schemas.xmlsoap.org/ws/2002/07/secext"));
    element.addChildElement(se.createName("Username", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testuser");
    element.addChildElement(se.createName("Password", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testpwd");
    System.out.println("Calling handler class.....................");
    System.out.println("** Request: \n "se.toString()"\n");
    }catch(SOAPException e) {
    e.printStackTrace();
    return true;
    /** * Specifies that the SOAP response message be logged to a
    * log file before the
    * * message is sent back to the client application
    * that invoked the Web service.
    public boolean handleResponse(MessageContext mc) {
    System.out.println("Handler Response method called");
    SOAPMessageContext messageContext = (SOAPMessageContext) mc;
    System.out.println("** Response: \n"messageContext.getMessage().toString()"\n");
    return true;
    /** * Specifies that a message be logged to the log file if a SOAP fault is
    * * thrown by the Handler instance.
    public boolean handleFault(MessageContext mc) {
    SOAPMessageContext messageContext = (SOAPMessageContext) mc;
    System.out.println("** Fault: \n"messageContext.getMessage().toString()"\n");
    return true;
    Please need help here.
    Thanks in Advance,
    pps

    I have tested static client calling using handler simple above service and found the issues.
    QName portName = new QName(namespace,
    "*RemoteServicePortType*");
    The above line code has created the issues,becuase in wsdl file ( given similar wsdl file).
    <?xml version="1.0"; encoding="UTF-8"?>
    <definitions name="HelloService"
    targetNamespace="http://www.ecerami.com/wsdl/HelloService.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://www.ecerami.com/wsdl/HelloService.wsdl"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <message name="SayHelloRequest">
    <part name="firstName" type="xsd:string"/>
    </message>
    <message name="SayHelloResponse">
    <part name="greeting" type="xsd:string"/>
    </message>
    *<portType name="RemoteServicePortType">*
    <operation name="sayHello">
    <input message="tns:SayHelloRequest"/>
    <output message="tns:SayHelloResponse"/>
    </operation>
    </portType>
    <binding name="Hello_Binding" type="tns:*RemoteServicePortType*">
    <soap:binding style="rpc"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="sayHello">
    <soap:operation soapAction="sayHello"/>
    <input>
    <soap:body
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
    namespace="urn:examples:helloservice"
    use="encoded"/>
    </input>
    <output>
    <soap:body
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
    namespace="urn:examples:helloservice"
    use="encoded"/>
    </output>
    </operation>
    </binding>
    <service name="Hello_Service">
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType1*">
    <soap:address
    location="http://host1:8080/soap/servlet/rpcrouter"/>
    </port>
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType2*">
    <soap:address
    location="http://host2:8080/soap/servlet/rpcrouter"/>
    </port>
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType3*">
    <soap:address
    location="http://host3:8080/soap/servlet/rpcrouter"/>
    </port>
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType4*">
    <soap:address
    location="http://host4:8080/soap/servlet/rpcrouter"/>
    </port>
    </service>
    </definitions>
    From the above WSDL, I have four port name (port binding="tns:Hello_Binding" name="*RemoteServicePortType1*) which is not matching with PortType (portType name="*RemoteServicePortType*")
    even i have iterated from getPorts() method and used to invoke the service.But handler was not calling when i invoke.
    Please guide me here how i specify correct portname which can call Handler class also.
    Thanks in advance,
    pps

  • The operation could not be completed because an item with the name xyz already exists

    I am trying to make a click and drag backup on an external FAT 32 drive to compliment my Time Machine backup (long story) and I've done this each time by dragging my critical folders into the drive. I get a message asking me to stop, replace or skip, and whether to apply to all items. i click replace, apply all, and let it go.
    however, one stubborn folder refuses to comply. every single time I click and drag a group of folder that includes that one, I get a message saying "the operation could not be completed because an item with the name xyz already exists" even after I selected the the "apply all" prompt. at which point, the Mac stops transferring ALL the other files.
    I figured, OK, i'll just transfer the other folders individually and then deal with this folder later. so I do that, and once I get to the offending folder, I try to transfer just that one folder into the drive. no good; I get the operation message again. I decide to just transfer the contents of the folder, rather than the folder itself. No good, I just get the operation message about one of the folders within the main folder.
    anyone know the cause, or at least a fix?

    If you've installed a system modification called "TotalFinder," remove it according to the developer's instructions after backing up all data. Log out, log back in, and try again.
    Otherwise, open the Info dialog on both the source and the destination volumes. What is the Format of each? For example, it might be "Mac OS Extended (Journaled)".
    For some other possible solutions, see:
    operation can't be completed because an...: Apple Support Communities

  • "The operation could not be completed" using iMovie 10.0.6

    I'm using the new iMovie 10.0.6 with OS X Yosemite 10.10.
    This is the first time I access to iMovie after upgrade to Yosemite.
    When I try to begin a new movie and after select a theme the following message is shown:
    "The operation could not be completed.
    No other information is available about the problem"
    The technical information obtained from the console is:
    "13/11/14 11:46:50,195 iMovie[702]: -[NSAlert alertWithError:] called with nil NSError. A generic error message will be displayed, but the user deserves better."
    So, I can't use iMovie as I expected...
    Is anybody have this problem ?
    Thanks

    I had the exact same problem, working with apple support I had to uninstall iMovie and all the files connected with it and then download iMovie again.  The problem is you iMovie is not creating the library file it needs to save your work.
    Apple support was great at walking me through which files had to be deleted.
    good luck
    Ron

  • The operation could not be performed because OLE DB provider "OraOLEDB.Oracle" for linked server ...

    Our setup is that we have two databases; a SQL Server 2008 database and an Oracle database (11g). I've got the oracle MTS stuff installed and the Oracle MTS Recovery Service is running. I have DTC configured to allow distributed transactions. All access to the Oracle tables takes place via views in the SQL Server database that go against Oracle tables in the linked server.
    (With regard to DTC config: Checked-> Network DTC Access, Allow Remote Clients, Allow Inbound, Allow Outbound, Mutual Authentication (tried all 3 options), Enable XA Transactions and Enable SNA LU 6.2 Transactions. DTC logs in as NT AUTHORITY\NetworkService)
    Our app is an ASP.NET MVC 4.0 app that calls into a number of WCF services to perform database work. Currently the web app and the WCF service share the same app pool (not sure if it's relevant, but just in case...)
    Some of our services are transactional, others are not.
    Each WCF service that is transactional has the following attribute on its interface:
    [ServiceContract(SessionMode=SessionMode.Required)]
    and the following attribute on the method signatures in the interface:
    [TransactionFlow(TransactionFlowOption.Allowed)]
    and the following attribute on every method implementations:
    [OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)]
    In my data access layer, all the transactional methods are set up as follows:
    using (IDbConnection conn = DbTools.GetConnection(_configStr, _connStr))
    using (IDbCommand cmd = DbTools.GetCommand(conn, "SET XACT_ABORT ON"))
    cmd.ExecuteNonQuery();
    using (IDbCommand cmd = DbTools.GetCommand(conn, sql))
    ... Perform actual database work ...
    Services that are transactional call transactional DAL code. The idea was to keep the stuff that needs to be transactional (a few cases) separate from the stuff that doesn't need to be transactional (~95% of the cases).
    There ought not be cases where transactional and non-transactional WCF methods are called from within a transaction (though I haven't verified this and this may be the cause of my problems. I'm not sure, which is part of why I'm asking here.)
    As I mentioned before, in most cases, this all works fine.
    Periodically, and I cannot identify what initiates it, I start getting errors. And once they start, pretty much everything starts failing for a while. Eventually things start working again. Not sure why... This is all in a test environment with a single user.
    Sometimes the error is:
    Unable to start a nested transaction for OLE DB provider "OraOLEDB.Oracle" for linked server "ORACLSERVERNAME". A nested transaction was required because the XACT_ABORT option was set to OFF.
    This message, I'm guessing is happening when I have non-transactional stuff within transactions, as I'm not setting XACT_ABORT in the non-transactional code (that's totally doable, if that will fix my issue).
    Most often, however, the error is this:
    System.Data.SqlClient.SqlException (0x80131904): The operation could not be performed because OLE DB provider "OraOLEDB.Oracle" for linked server "ORACLSERVERNAME" was unable to begin a distributed transaction.
    Now, originally we only had transactions on SQL Server tables and that all worked fine. It wasn't until we added transaction support for some of the Oracle tables that things started failing. I know the Oracle transactions work. And as I said, most of the time, everything is just hunky dorey and then sometimes it starts failing and keeps failing for a while until it decides to stop failing and then it all works again.
    I noticed that our transactions didn't seem to have a DistributedIdentifier set, so I added the EnsureDistributed() method from this blog post: http://www.make-awesome.com/2010/04/forcibly-creating-a-distributed-net-transaction/
    Instead of a hardcoded Guid (which seemed to cause a lot of problems), I have it generating a new Guid for each transaction and that seems to work, but it has not fixed my problem. I'm wondering if the lack of a DistribuedIdentifier is indicative of some other underlying problem. I've never dealt with an environment quite like this before, so I'm not sure what is "normal".
    I've also noticed that the DistributedIdentifier doesn't get passed to WCF. From the client, I have a DistributedIdentifier and a LocalIdentifier in Transaction.Current.TransactionInformation. In the WCF server, however there is only a LocalIdentifier set and it is a different Guid from the client side (which makes sense, but I would have expected the DistributedIdentifier to go across).
    So I changed the wait the code above works and instead, on the WCF side, I call a method that calls Transaction.Current.EnlistDurable() with the DummyEnlistmentNotification class from the link above (though with a unique Guid for each transaction instead of the hardcoded guid in the link). I now havea  DistributedIdentifier on the server-side, but it still doesn't fix the problem.
    It appears that when I'm in the midst of transactions failing, even after I shut down IIS, I'm unable to get the DTC service to shutdown and restart. If I go into Component Services and change the security settings, for example, and hit Apply or OK, after a bit of a wait I get a dialgo that says, "Failed ot restart the MS DTC serivce. Please examine the eventlog for further details."
    In the eventlog I get a series of events:
    1 (from MSDTC): "The MS DTC service is stopping"
    2 (From MSSQL$SQLEXPRESS): "The connection has been lost with Microsoft Distributed Transaction Coordinator (MS DTC). Recovery of any in-doubt distributed transactions
    involving Microsoft Distributed Transaction Coordinator (MS DTC) will begin once the connection is re-established. This is an informational
    message only. No user action is required."
    -- Folowed by these 3 identical messages
    3 (from MSDTC Client 2): 'MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system GCOVA38.'
    4 (from MSDTC Client 2): 'MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system GCOVA38.'
    5 (from MSDTC Client 2): 'MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system GCOVA38.'
    6 (From MSDTC 2): MSDTC started with the following settings: Security Configuration (OFF = 0 and ON = 1):
    Allow Remote Administrator = 0,
    Network Clients = 1,
    Trasaction Manager Communication:
    Allow Inbound Transactions = 1,
    Allow Outbound Transactions = 1,
    Transaction Internet Protocol (TIP) = 0,
    Enable XA Transactions = 1,
    Enable SNA LU 6.2 Transactions = 1,
    MSDTC Communications Security = Mutual Authentication Required, Account = NT AUTHORITY\NetworkService,
    Firewall Exclusion Detected = 0
    Transaction Bridge Installed = 0
    Filtering Duplicate Events = 1
    This makes me wonder if there's something maybe holding a transaction open somewhere?

    The statement executed from the sql server. (Installed version sql server 2008 64 bit standard edition SP1 and oracle 11g 64 bit client), DTS enabled
    Below is the actual sql statement issued
    SET XACT_ABORT ON
    BEGIN TRAN
    insert into XXX..EUINTGR.UPLOAD_LWP ([ALTID]
              ,[GRANT_FROM],[GRANT_TO],[NO_OF_DAYS],[LEAVENAME],[LEAVEREASON],[FROMHALFTAG]
              ,[TOHALFTAG] ,[UNIT_USER],[UPLOAD_REF_NO],[STATUS],[LOGINID],[AVAILTYPE],[LV_REV_ENTRY])
              values('IS2755','2010-06-01',
    '2010-06-01','.5',     'LWOP'     ,'PERSONAL'     ,'F',     'F',     'EUINTGR',
    '20101',1,1,0,'ENTRY')
    rollback TRAN
    OLE DB provider "ORAOLEDB.ORACLE" for linked server "XXX" returned message "New transaction cannot enlist in the specified transaction coordinator. ".
    Msg 7391, Level 16, State 2, Line 3
    The operation could not be performed because OLE DB provider "ORAOLEDB.ORACLE" for linked server "XXX" was unable to begin a distributed transaction.
    Able to execute the above statement successfully without using transaction.We need to run the statement with transaction.

  • Checking Midi Drivers operation could not be completed error...

    I am having a problem that I thought would get better by upgrading. DUH! I have installed Snow Leopard, and yes, I have been reading what others have said here about SL, and honestly, because it started with an application I use that recommended Snow Leopard in the video work I do, I cannot remember all the details of this current series of problems exactly anymore.
    I have installed Logic 9 Studio upgrade. When I try to open the program it stops at 'Checking Midi Drivers' gives me the error "The operation could not be completed. No other information is available about the problem." It opens to the new project window. When I click on any of the templates Logic quits with this error:
    Process: Logic Pro [816]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 9.0.2 (1664.16)
    Build Info: Logic-16641600~1
    Code Type: X86 (Native)
    Parent Process: launchd [473]
    Date/Time: 2009-12-23 13:28:56.240 -0800
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 116424 sec
    Crashes Since Last Report: 83
    Per-App Interval Since Last Report: 3119 sec
    Per-App Crashes Since Last Report: 22
    Anonymous UUID: FC0076FA-E91E-4CB8-AE2C-BBE20696D753
    Exception Type: EXCBADACCESS (SIGABRT)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000010
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x92c8c732 __kill + 10
    1 libSystem.B.dylib 0x92c8c724 kill$UNIX2003 + 32
    2 libSystem.B.dylib 0x92d1f98d raise + 26
    3 libSystem.B.dylib 0x92d359d9 __abort + 124
    4 libSystem.B.dylib 0x92d35a55 abortreportnp + 0
    5 com.apple.logic.pro 0x003d8154 0x1000 + 4026708
    6 libSystem.B.dylib 0x92c919bb _sigtramp + 43
    7 ??? 0x0000000a 0 + 10
    8 com.apple.music.apps.MAToolKit 0x02b27f6b 0x2b21000 + 28523
    9 com.apple.music.apps.MAToolKit 0x02b276b2 0x2b21000 + 26290
    10 com.apple.music.apps.MAToolKit 0x02b25df2 0x2b21000 + 19954
    11 com.apple.music.apps.MAToolKit 0x02b263ce 0x2b21000 + 21454
    12 com.apple.logic.pro 0x008698d6 0x1000 + 8816854
    13 com.apple.logic.pro 0x000c1bbb 0x1000 + 789435
    14 com.apple.logic.pro 0x008886f4 0x1000 + 8943348
    15 com.apple.logic.pro 0x0000aa6e 0x1000 + 39534
    16 com.apple.logic.pro 0x001b93ef 0x1000 + 1803247
    17 com.apple.logic.pro 0x002839ae 0x1000 + 2632110
    18 com.apple.logic.pro 0x006143c5 0x1000 + 6370245
    19 com.apple.logic.pro 0x005f0a8b 0x1000 + 6224523
    20 com.apple.logic.pro 0x005f2bbc 0x1000 + 6233020
    21 com.apple.AppKit 0x9044cac0 -[NSDocument readFromURL:ofType:error:] + 743
    22 com.apple.logic.pro 0x005f1dff 0x1000 + 6229503
    23 com.apple.logic.pro 0x0061478f 0x1000 + 6371215
    24 com.apple.logic.pro 0x005f0a8b 0x1000 + 6224523
    25 com.apple.logic.pro 0x005f0510 0x1000 + 6223120
    26 com.apple.AppKit 0x90276b72 -[NSDocumentController makeUntitledDocumentOfType:error:] + 325
    27 com.apple.AppKit 0x90276282 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 334
    28 com.apple.AppKit 0x902760f9 -[NSDocumentController newDocument:] + 54
    29 com.apple.logic.pro 0x006eee86 0x1000 + 7265926
    30 com.apple.logic.pro 0x0060f169 0x1000 + 6349161
    31 com.apple.Foundation 0x94bc61c7 nsnotecallback + 176
    32 com.apple.CoreFoundation 0x917629a9 __CFXNotificationPost + 905
    33 com.apple.CoreFoundation 0x917623da _CFXNotificationPostNotification + 186
    34 com.apple.Foundation 0x94bbb094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    35 com.apple.Foundation 0x94bc8471 -[NSNotificationCenter postNotificationName:object:] + 56
    36 com.apple.AppKit 0x9011e73a -[NSApplication _postDidFinishNotification] + 125
    37 com.apple.AppKit 0x9011e64a -[NSApplication _sendFinishLaunchingNotification] + 74
    38 com.apple.AppKit 0x90275595 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    39 com.apple.AppKit 0x902751b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    40 com.apple.Foundation 0x94bfb404 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    41 com.apple.Foundation 0x94bfb1c8 _NSAppleEventManagerGenericHandler + 228
    42 com.apple.AE 0x91b1ff3a aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    43 com.apple.AE 0x91b1fe39 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    44 com.apple.AE 0x91b1fd46 aeProcessAppleEvent + 197
    45 com.apple.HIToolbox 0x943fb2a1 AEProcessAppleEvent + 50
    46 com.apple.AppKit 0x900eed02 _DPSNextEvent + 1420
    47 com.apple.AppKit 0x900ee306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    48 com.apple.AppKit 0x900b049f -[NSApplication run] + 821
    49 com.apple.prokit 0x00f55670 NSProApplicationMain + 325
    50 com.apple.logic.pro 0x00003036 0x1000 + 8246
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x92c520ea kevent + 10
    1 libSystem.B.dylib 0x92c52804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x92c51cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x92c51a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x92c514f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 com.apple.CoreFoundation 0x9174477f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x91743864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x917497a4 CFRunLoopRun + 84
    5 com.apple.DVCPROHDMuxer 0x522f898f AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 317
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 ....audiohijackserver.hermes 0x045eb9b2 ahservloop + 132
    3 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    4 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92c4a856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x91783ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    3 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a9d79e GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 17630
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 com.apple.audio.midi.CoreMIDI 0x012cef31 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3 com.apple.audio.midi.CoreMIDI 0x012ed8fe MIDIProcess::RunMIDIInThread() + 150
    4 com.apple.audio.midi.CoreMIDI 0x012d0149 XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x012cfb16 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92c2b93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92c59445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92c88028 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x98573235 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x98572f73 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x9859716b TimerThread + 97
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x92c51182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92c51718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 9:
    0 libSystem.B.dylib 0x92c51182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92c51718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 10:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c85441 nanosleep$UNIX2003 + 188
    2 com.apple.Foundation 0x94c50be8 +[NSThread sleepForTimeInterval:] + 123
    3 com.apple.logic.pro 0x0086a536 0x1000 + 8820022
    4 com.apple.Foundation 0x94bc68d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x94bc6888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x92d35969 ecx: 0xbfffdd9c edx: 0x92c8c732
    edi: 0x00000000 esi: 0x046b19f0 ebp: 0xbfffddb8 esp: 0xbfffdd9c
    ss: 0x0000001f efl: 0x00000286 eip: 0x92c8c732 cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x007f0017
    Binary Images:
    0x1000 - 0xbc0ff6 com.apple.logic.pro 9.0.2 (1664.16) <2C361495-C4B7-2937-A607-07CEFBED9984> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0xe4e000 - 0xe69fe7 com.apple.music.apps.MAAudioUnitSupport 9.0.2 (204.6) <7ECE1371-B4DF-377D-DC0C-86B338944728> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0xe78000 - 0xea8fff +MAAssetSharing ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0xeba000 - 0xf16fff com.apple.music.apps.MALoopManagement 9.0.2 (197.3) <6FEE8C1C-E470-A3D5-06BF-395371BA4C94> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0xf33000 - 0x10ecff3 com.apple.prokit 5.0 (883) <F30846E7-8A05-F4F9-7F6B-A78FBEDA517A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x11f4000 - 0x1282feb com.apple.music.apps.MACore 9.0.2 (440.5) <706C13EA-A316-AE58-943D-69BC4E9C3208> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x12bf000 - 0x130bfff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1330000 - 0x1372fe7 com.apple.music.apps.MAHarmony 9.0.2 (176.3) <493EC005-32AE-EE75-9009-EB12C860D875> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1386000 - 0x1792ffb com.apple.music.apps.MAPlugInGUI 9.0.2 (399.5) <6F3EDD47-C8AA-2274-4A19-8F0FF2F2BAEA> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a1e000 - 0x1b00fff com.apple.music.apps.OMF 9.0.2 (100.3) <7B91193A-D967-0DB7-00AA-BCA7993C707D> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b14000 - 0x2124ff5 com.apple.music.apps.MADSP 9.0.2 (554.8) <646FDF11-6EE8-C771-6AD8-C5784800DEF6> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x2822000 - 0x2842ff7 com.apple.music.apps.LogicFileBrowser 9.0.2 (204.3) <D7A318F6-8FF9-787D-1AB9-CE133BBF8DE8> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2852000 - 0x28cafff com.apple.music.apps.LogicLoopBrowser 9.0.2 (193.3) <597DB84B-3C65-D92C-9221-91571111D0F4> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x28f3000 - 0x2914ff3 com.apple.music.apps.MAApogeeSupport 9.0.2 (292.3) <87FD87CB-5CAC-826C-45BE-37AD78C0E267> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x291f000 - 0x2924fff com.apple.music.apps.MAResources 9.0.2 (204.3) <8DB7BD56-40FD-C1C1-B306-A0D34C9A7BB7> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2929000 - 0x2952fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2963000 - 0x296afff com.apple.AEProfiling 1.2 (22) <CC396984-C1A1-0215-E4E6-920570C49552> /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x2972000 - 0x2981fff com.apple.AERegistration 1.2 (77) <9E328A00-EE04-F5D1-0564-C0BD1C477F03> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2994000 - 0x299ffff com.apple.music.apps.MAUnitTest 9.0.2 (75.3) <7D85F172-8A42-A16A-7491-4344E34DE578> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x29a7000 - 0x2a56feb com.apple.music.apps.MAFiles 9.0.2 (119.3) <539BA78A-3C57-EF8F-35E7-1B6A8FB1C5BA> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2a6f000 - 0x2addfff com.apple.music.apps.MAAudioEngine 9.0.2 (131.8) <E223E042-C9B4-D222-20C8-A28139202665> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2b21000 - 0x2b2afff com.apple.music.apps.MAToolKit 9.0.2 (327.3) <3AD5474C-93BB-A89C-0456-1A77C96F931D> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2b30000 - 0x2b4efef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2b5d000 - 0x2bf9ffc com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2c56000 - 0x2d0bfe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x2d51000 - 0x2d91ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x45a8000 - 0x45d6ff7 com.apple.prokit.SnowLeopardPanels 5.0.1 (906) <200EE10C-484D-A71C-ADFF-4DCC8411C31D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x45e7000 - 0x45f3ff7 +com.rogueamoeba.audiohijackserver.hermes 2.2.5 (2.2.5) <CD6C7A74-BA03-F3A7-0D1E-460E6A043024> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x2c1eb000 - 0x2c1edfff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x51bc4000 - 0x51bc8ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x51bcd000 - 0x51bd3ffb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x51bd8000 - 0x51c09feb +com.digidesign.digidesign.DigiCoreAudioPlugIn 8.0.3prx180 (8.0.3d180) <2B3894FA-5EBF-00EE-3730-D43155B45AE6> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x51c40000 - 0x51c95fe2 com.apple.DVCPROHDAudio 1.3.2 (1.3.2) <6F4FE6F8-74E2-3901-2D11-8B9F0164F13A> /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x51cb4000 - 0x51cb6fff +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x51cc5000 - 0x51ccdff7 com.apple.proapps.mrcheckpro 1.4 (361) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x51d75000 - 0x51d77ff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x51d7d000 - 0x51dc3ffb com.apple.motion.component 1.0 (698) <BB552040-6F80-5207-E007-BB94A59D748D> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x52098000 - 0x520fcfe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <19C0FA03-FC58-CCFE-395D-DD4125A0B811> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x5211c000 - 0x5218efff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x5219c000 - 0x5219eff7 Motion ??? (???) <CB022D7E-217B-EF89-4974-72C50834B41D> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x521a4000 - 0x52240ff8 com.apple.procore.framework 4.0 (712) <09EE33B4-412C-FC25-5356-1DE47695BAA6> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x5227f000 - 0x522cf01f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x522e1000 - 0x52346fe0 com.apple.DVCPROHDMuxer 1.3.2 (1.3.2) <C3983AFC-F21C-36C3-41BB-AA28CEED0AD7> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x52ecc000 - 0x5303dff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x530e0000 - 0x5331cfef com.apple.ATIRadeonX1000GLDriver 1.6.6 (6.0.6) <E0A5525E-5037-2D4A-0879-2FB8F865FBC2> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x5333f000 - 0x5335bff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x53aec000 - 0x53aeeff7 com.apple.music.apps.anvil.resources 9.0.2 (272.3) <594C3BD1-8196-ECBA-577B-4C265565C893> /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x53af3000 - 0x53af5ff7 com.apple.music.apps.common.resources 9.0.2 (272.3) <3160C67B-CB1E-98F4-D445-059665841D76> /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x544b8000 - 0x544baff7 com.apple.music.apps.ebp.resources 9.0.2 (272.3) <D7B8918C-96CB-3D0E-3294-A835595214C8> /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x544bf000 - 0x544c1ff7 com.apple.music.apps.efx.resources 9.0.2 (272.3) <C2CC6EA7-B1CB-5CAD-82CC-C074F9C38235> /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x544c6000 - 0x544c8ff7 com.apple.music.apps.egt.resources 9.0.2 (272.3) <E483471D-671C-091F-AC3A-18354E09F77F> /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x544cd000 - 0x544cfff7 com.apple.music.apps.emx.resources 9.0.2 (272.3) <0303574C-DA1C-6D3D-515D-8577386614AD> /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x544d4000 - 0x544d6ff7 com.apple.music.apps.es1.resources 9.0.2 (272.3) <244135E2-881C-3AAE-29F0-B5A976F4FAD2> /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x544db000 - 0x544ddff7 com.apple.music.apps.es2.resources 9.0.2 (272.3) <71E054D1-8C15-8CD3-53E5-C9C953EC2831> /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x544e2000 - 0x544e4ff7 com.apple.music.apps.esp.resources 9.0.2 (272.3) <B72CE454-D225-0A10-2CB6-FAD913A867F6> /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x544e9000 - 0x544ebff7 com.apple.music.apps.evb3.resources 9.0.2 (272.3) <4E6065AB-D841-D5E5-314D-65B535CF2D12> /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x544f0000 - 0x544f2ff7 com.apple.music.apps.evd6.resources 9.0.2 (272.3) <3DD4AC73-C885-0095-D0BC-CC588A95BD2E> /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x544f7000 - 0x544f9ff7 com.apple.music.apps.evoc.resources 9.0.2 (272.3) <F6895942-AA20-92B2-6BB6-49CD758BDC51> /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x544fe000 - 0x54500ff7 com.apple.music.apps.evp88.resources 9.0.2 (272.3) <4AFCEE14-A4B7-432A-C5CA-DB1435F1A97F> /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x54505000 - 0x54507ff7 com.apple.music.apps.exs24.resources 9.0.2 (272.3) <82BF276A-E325-4A2B-BBE2-9D15039DA135> /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x5450c000 - 0x5450efff com.apple.music.apps.guitaramp.resources 9.0.2 (272.3) <3AEFDED5-90FA-F6E6-5559-1E06715031EC> /Applications/Logic Pro.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x54513000 - 0x54515ff7 com.apple.music.apps.guitarcontrols.resources 9.0.2 (272.3) <2D6300E8-51C3-FC81-7BE1-B02623223C31> /Applications/Logic Pro.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x5451a000 - 0x5451cfff com.apple.music.apps.mutapdel.resources 9.0.2 (272.3) <2CEDCE11-ABC9-FBB5-4100-505F93B84FE7> /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x54521000 - 0x54523fff com.apple.music.apps.pedalboard.resources 9.0.2 (272.3) <412892BD-E694-E93B-975E-35889B034519> /Applications/Logic Pro.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x54528000 - 0x5452afff com.apple.music.apps.revolver.resources 9.0.2 (272.3) <F97E6C10-FA37-01A6-C12B-F156D3DDB337> /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x5452f000 - 0x54531ff7 com.apple.music.apps.sphere.resources 9.0.2 (272.3) <EF9DCBED-A571-4CB9-FF65-6BA293754724> /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x5ab40000 - 0x5ab9ffe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/chazjazmusic/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x5abbe000 - 0x5abd9ff7 com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x8f706000 - 0x8fa7eff7 com.apple.GeForce7xxxGLDriver 1.6.6 (6.0.6) <B480321A-51C9-F064-F0F0-BB4DE28DD006> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90043ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90044000 - 0x90079ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9007a000 - 0x9007bff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x900a6000 - 0x90984ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9098b000 - 0x909faff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90cf6000 - 0x90d07ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90e1d000 - 0x90e5eff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90e5f000 - 0x90e6cff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e86000 - 0x90faaff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90fab000 - 0x9103cfe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9103d000 - 0x911bffe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x911c0000 - 0x911d8ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x911d9000 - 0x91288ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9128c000 - 0x9128fff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91290000 - 0x913cffe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x913d0000 - 0x91428fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91454000 - 0x91474fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x91475000 - 0x91493ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x914b3000 - 0x91509ff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9150a000 - 0x915c3fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x915c4000 - 0x91635ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91636000 - 0x91707fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x91708000 - 0x9187ffef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x918c7000 - 0x91905ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91906000 - 0x91956fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91957000 - 0x91a4dff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91a4e000 - 0x91abeff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91abf000 - 0x91adaff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ae6000 - 0x91b1bff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91b1c000 - 0x91b4fff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91b6e000 - 0x91b6eff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b6f000 - 0x91b79fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91c6f000 - 0x920a4ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x920a5000 - 0x920e7fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92191000 - 0x92192ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92193000 - 0x92393feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92399000 - 0x9239fff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x923a0000 - 0x923bffe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x923c0000 - 0x923d5fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x923d6000 - 0x923e3ff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x923e4000 - 0x92434ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9251a000 - 0x925b2fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x925b3000 - 0x92690ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92691000 - 0x9284dfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9284e000 - 0x928a8ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x928a9000 - 0x92ba2fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92ba3000 - 0x92c25ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92c26000 - 0x92c2aff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92c2b000 - 0x92dcffeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x92dd0000 - 0x92dd1ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92dd2000 - 0x92e0fff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92e10000 - 0x92e40ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x92e41000 - 0x9306cff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93075000 - 0x9309bfff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9309c000 - 0x9310aff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9310b000 - 0x93184ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x93195000 - 0x93199ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x931ab000 - 0x931afff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x931d0000 - 0x93207ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x933ca000 - 0x933cdff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x933ce000 - 0x933e0ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9353b000 - 0x9353bff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9353c000 - 0x9366afe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9366b000 - 0x93745ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93746000 - 0x93749ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9374a000 - 0x9374aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9374b000 - 0x937f3ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x937f4000 - 0x9383aff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x9383b000 - 0x93841fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94184000 - 0x941c3ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x941c4000 - 0x9421efe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x94250000 - 0x9428bfe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9428c000 - 0x94339fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9433a000 - 0x94372ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94373000 - 0x9437dff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x943bf000 - 0x946e2fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x946e3000 - 0x94824ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94825000 - 0x94861fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94862000 - 0x94864ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94865000 - 0x948b2feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x948b3000 - 0x948f7fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9490c000 - 0x9490efe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x94919000 - 0x94929ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94969000 - 0x94b44ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94b45000 - 0x94baffe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94bb0000 - 0x94e20ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94e8c000 - 0x94e8cff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94e8d000 - 0x94f8efe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x94f97000 - 0x94fa0ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94fa1000 - 0x94fdafe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94fe6000 - 0x94ffafe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9506a000 - 0x9509bff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9509c000 - 0x9509cff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9509d000 - 0x950e1ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95102000 - 0x955b0fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x955dc000 - 0x955f0ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x955f3000 - 0x955fdffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95642000 - 0x9566aff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9566b000 - 0x956b4fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x957e0000 - 0x95fc34b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95feb000 - 0x95ff2fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95ff3000 - 0x96036ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96037000 - 0x96037ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96038000 - 0x96048ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96049000 - 0x962abff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x962b4000 - 0x96363fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96364000 - 0x9665dff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9665e000 - 0x96711fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96712000 - 0x96739ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9673a000 - 0x967e8ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x967e9000 - 0x96bffff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96c00000 - 0x96c3affb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96d30000 - 0x96d30ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96d31000 - 0x96d55ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96d56000 - 0x96d8aff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x96d9e000 - 0x96e79ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x96e7a000 - 0x96edeffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96edf000 - 0x97246ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97247000 - 0x97247ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97253000 - 0x981e1ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x981e2000 - 0x981eeff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x981ef000 - 0x9828cfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9828d000 - 0x982deff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98349000 - 0x983a9fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x983aa000 - 0x983cafe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x983cb000 - 0x983e7fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x983e8000 - 0x98438ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98439000 - 0x9852bff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x9852c000 - 0x9884bfe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9884c000 - 0x988c6fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x988c7000 - 0x988d4ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x988d5000 - 0x988daff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x988db000 - 0x988e9fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x988ea000 - 0x988eaff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x988eb000 - 0x98962fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98963000 - 0x989e3feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x98a73000 - 0x98a7eff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x98a7f000 - 0x98c61fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x98c62000 - 0x98cfefe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98d37000 - 0x98e01fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98e37000 - 0x98f63fe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98f64000 - 0x98f86fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x98f87000 - 0x98f8afe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98f8b000 - 0x99032fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x99033000 - 0x99140ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99173000 - 0x99180ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99181000 - 0x991f5fef com.apple.CoreSymbolication 2.1 (23.2) <D4339C60-617B-4D5E-A3B1-C8B0B22FAE09> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x991f6000 - 0x991fdff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99315000 - 0x994b2fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <FF236E3F-A016-2AEB-3E62-7108E76EF825> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x994b3000 - 0x994b5ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x994b6000 - 0x995b8fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-4
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-2
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST3500641AS P, 465.76 GB
    Serial ATA Device: ST3750640AS, 698.64 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D, 7.64 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9131, 0xfd500000
    USB Device: Jog and Shuttle, 0x05f3, 0x0240, 0xfd510000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x9223, 0xfd520000
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd300000
    USB Device: EPSON Scanner, 0x04b8 (Seiko Epson Corp.), 0x0119, 0xfd310000
    USB Device: USB Trackball, 0x046d (Logitech Inc.), 0xc408, 0xfd330000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd320000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0234, 0xfd200000
    USB Device: External, 0x13fd (Initio Corporation), 0x1340, 0xfd210000
    USB Device: RigKontrol2, 0x17cc, 0x1969, 0xfd240000
    USB Device: External, 0x13fd (Initio Corporation), 0x1340, 0xfd220000
    USB Device: Kore controller, 0x17cc, 0x4711, 0xfd100000
    USB Device: Hub, 0x03eb (Atmel Corporation), 0x3301, 0x3d200000
    USB Device: SoundSticks, 0x05fc (Harman International), 0x7849, 0x3d230000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x911c, 0x3d240000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x921c, 0x3d242000
    USB Device: Hub, 0x0424 (SMSC), 0x2507, 0x3d220000
    USB Device: XD-0608-U, 0x056a (WACOM Co., Ltd.), 0x0042, 0x3d224000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0234, 0x3d222000
    USB Device: iPhone, 0x05ac (Apple Inc.), 0x1294, 0x3d221000
    USB Device: USB Axiom 49, 0x0763 (M-Audio), 0x0199, 0x3d223000
    USB Device: MXO by Matrox, 0x18ea, 0x8003, 0x3d210000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    FireWire Device: LaCie Hard Drive FireWire+, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: IEEE 1394 Disk, Seagate, Up to 400 Mb/sec
    FireWire Device: unknown_device, Unknown
    FireWire Device: > LaCie d2 DVD-RW Firewire, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: ST3500841A, Initio, Up to 400 Mb/sec
    FireWire Device: unknown_device, Unknown
    FireWire Device: unknown_device, Unknown
    FireWire Device: OEM ATA Device 00, G-TECH, Up to 800 Mb/sec
    FireWire Device: OXFORD IDE Device 1, Oxford Semiconductor Ltd., Up to 800 Mb/sec
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown
    I have been reading ad nauseum all the possibilities already posted, this is my last attempt before I call Apple. The thread here (http://discussions.apple.com/thread.jspa?messageID=10312421&#10312421) looked hopeful but Bill Borez's solution did not apply as I found no Melodyne plug-in there. I DO have an older version of Melodyne installed, but short of trashing all of the Melodyne in the various applications it is installed in I want to see if it is indeed my problem.
    Also I looked at another possible solution here: (http://jnote.org/29) but I seemed to have lost that pass word as none I have written down seem to work.
    I am a creative sort who has some aptitude for this techie stuff, but little patience for it. I am still rather new at posting. Please be patient and I will work towards a better understanding and patience. I have used these boards to fix many problems, but this has gotten the best of me so far.
    I have upgraded to Final Cut Studio 3, for my job, and dumped FCP Studio 2, Dumped the Logic Studio 8 as well. I would really appreciate the help because I need Compressor to continue with the video stuff I do, and now it will not load either!
    Thanks in advance!
    Chaz

    yes, I am running Native Instruments software. and it is up to date. This did not fix my problem. It did change, however. It is checking plug-ins when it Fails and has this error code:
    Process: Logic Pro [620]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 9.0.2 (1664.16)
    Build Info: Logic-16641600~1
    Code Type: X86 (Native)
    Parent Process: launchd [268]
    Date/Time: 2009-12-23 20:38:05.220 -0800
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 127050 sec
    Crashes Since Last Report: 104
    Per-App Interval Since Last Report: 3567 sec
    Per-App Crashes Since Last Report: 33
    Anonymous UUID: FC0076FA-E91E-4CB8-AE2C-BBE20696D753
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000010
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.prokit 0x00f85aa1 -[NSProProgressIndicator _reconfigureAnimationState:] + 387
    1 com.apple.AppKit 0x9019878a -[NSProgressIndicator _setWindow:] + 120
    2 com.apple.AppKit 0x9011180d __NSViewRecursionHelper + 40
    3 com.apple.CoreFoundation 0x9173c4e0 CFArrayApplyFunction + 224
    4 com.apple.AppKit 0x900c2184 -[NSView _setWindow:] + 1934
    5 com.apple.AppKit 0x900cae81 -[NSView addSubview:] + 411
    6 com.apple.AppKit 0x900f540f -[NSFrameView addSubview:] + 60
    7 com.apple.AppKit 0x900ca2c3 -[NSWindow setContentView:] + 283
    8 com.apple.AppKit 0x9013dd06 -[NSWindowTemplate nibInstantiate] + 972
    9 com.apple.prokit 0x00fb729b -[NSProWindowTemplate nibInstantiate] + 51
    10 com.apple.AppKit 0x900aeca4 -[NSIBObjectData instantiateObject:] + 253
    11 com.apple.AppKit 0x900adfaa -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 336
    12 com.apple.AppKit 0x900ac450 loadNib + 257
    13 com.apple.AppKit 0x900abaa3 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 831
    14 com.apple.AppKit 0x900ab759 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    15 com.apple.AppKit 0x9013b52b -[NSWindowController loadWindow] + 223
    16 com.apple.AppKit 0x900d22da -[NSWindowController window] + 89
    17 ...sic.apps.MAAudioUnitSupport 0x00e5996b 0xe4e000 + 47467
    18 ...sic.apps.MAAudioUnitSupport 0x00e5c2cf 0xe4e000 + 58063
    19 com.apple.logic.pro 0x00727c4f 0x1000 + 7498831
    20 com.apple.logic.pro 0x00727623 0x1000 + 7497251
    21 com.apple.logic.pro 0x0059715e 0x1000 + 5857630
    22 ...le.music.apps.MAAudioEngine 0x02a927e4 MD::Init(int, bool) + 4676
    23 ...le.music.apps.MAAudioEngine 0x02a9b712 GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 9298
    24 com.apple.logic.pro 0x0008cbdd 0x1000 + 572381
    25 com.apple.logic.pro 0x0008e6fc 0x1000 + 579324
    26 com.apple.logic.pro 0x003d8c35 0x1000 + 4029493
    27 com.apple.logic.pro 0x001ac9ce 0x1000 + 1751502
    28 com.apple.logic.pro 0x001b08ae 0x1000 + 1767598
    29 com.apple.logic.pro 0x0060f0b3 0x1000 + 6348979
    30 com.apple.Foundation 0x94bc61c7 nsnotecallback + 176
    31 com.apple.CoreFoundation 0x917629a9 __CFXNotificationPost + 905
    32 com.apple.CoreFoundation 0x917623da _CFXNotificationPostNotification + 186
    33 com.apple.Foundation 0x94bbb094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    34 com.apple.Foundation 0x94bc8471 -[NSNotificationCenter postNotificationName:object:] + 56
    35 com.apple.AppKit 0x9011e73a -[NSApplication _postDidFinishNotification] + 125
    36 com.apple.AppKit 0x9011e64a -[NSApplication _sendFinishLaunchingNotification] + 74
    37 com.apple.AppKit 0x90275595 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    38 com.apple.AppKit 0x902751b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    39 com.apple.Foundation 0x94bfb404 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    40 com.apple.Foundation 0x94bfb1c8 _NSAppleEventManagerGenericHandler + 228
    41 com.apple.AE 0x91b1ff3a aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    42 com.apple.AE 0x91b1fe39 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    43 com.apple.AE 0x91b1fd46 aeProcessAppleEvent + 197
    44 com.apple.HIToolbox 0x943fb2a1 AEProcessAppleEvent + 50
    45 com.apple.AppKit 0x900eed02 _DPSNextEvent + 1420
    46 com.apple.AppKit 0x900ee306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    47 com.apple.AppKit 0x900b049f -[NSApplication run] + 821
    48 com.apple.prokit 0x00f55670 NSProApplicationMain + 325
    49 com.apple.logic.pro 0x00003036 0x1000 + 8246
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x92c520ea kevent + 10
    1 libSystem.B.dylib 0x92c52804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x92c51cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x92c51a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x92c514f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x92c51182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92c51718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 ....audiohijackserver.hermes 0x046e39b2 ahservloop + 132
    3 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    4 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92c4a856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x91783ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    3 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c594c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x029d0808 ResolveFile + 55784
    4 com.apple.music.apps.MAFiles 0x029d08d1 ResolveFile + 55985
    5 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    6 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c594c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x029d0808 ResolveFile + 55784
    4 com.apple.music.apps.MAFiles 0x029d08d1 ResolveFile + 55985
    5 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    6 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92c2b93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92c59445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92c88028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x9886c965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x9886f997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x9886d294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x9886cb2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x9886ca42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x92c2b9ee machwaituntil + 10
    1 ...ple.CoreServices.CarbonCore 0x985f6034 MPDelayUntil + 43
    2 ...ple.CoreServices.CarbonCore 0x98605a56 Delay + 107
    3 ...opellerheads.rewire.library 0x5a7707e8 RWPUnregisterDeviceImp + 21574
    4 ...opellerheads.rewire.library 0x5a78ba5c RWPUnregisterDeviceImp + 132794
    5 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    6 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x92c2b916 semaphorewaittrap + 10
    1 com.ableton.live-engine 0x5a9cd625 TSingleSyncPoint::Wait() + 23
    2 com.ableton.live-engine 0x5a86b72b OValueProcessor::SetValue(float) + 1967
    3 com.ableton.live-engine 0x5a9cdaa4 TThread::Start() + 288
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x92c2b916 semaphorewaittrap + 10
    1 com.ableton.live-engine 0x5a9cd625 TSingleSyncPoint::Wait() + 23
    2 com.ableton.live-engine 0x5a86b72b OValueProcessor::SetValue(float) + 1967
    3 com.ableton.live-engine 0x5a9cdaa4 TThread::Start() + 288
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x92c2b916 semaphorewaittrap + 10
    1 com.ableton.live-engine 0x5a9cd625 TSingleSyncPoint::Wait() + 23
    2 com.ableton.live-engine 0x5a86b72b OValueProcessor::SetValue(float) + 1967
    3 com.ableton.live-engine 0x5a9cdaa4 TThread::Start() + 288
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a81a5c MD::CallProcessThread1(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a8180c MD::CallProcessThread2(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a815bc MD::CallProcessThread3(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a80c7c MD::CallProcessThread7(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x00f85943 ecx: 0x02e69130 edx: 0x00000001
    edi: 0x00000001 esi: 0x564879e0 ebp: 0xbfffe0f8 esp: 0xbfffe0c0
    ss: 0x0000001f efl: 0x00010202 eip: 0x00f85aa1 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000010
    Binary Images:
    0x1000 - 0xbc0ff6 com.apple.logic.pro 9.0.2 (1664.16) <2C361495-C4B7-2937-A607-07CEFBED9984> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0xe4e000 - 0xe69fe7 com.apple.music.apps.MAAudioUnitSupport 9.0.2 (204.6) <7ECE1371-B4DF-377D-DC0C-86B338944728> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0xe78000 - 0xea8fff +MAAssetSharing ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0xeba000 - 0xf16fff com.apple.music.apps.MALoopManagement 9.0.2 (197.3) <6FEE8C1C-E470-A3D5-06BF-395371BA4C94> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0xf33000 - 0x10ecff3 com.apple.prokit 5.0 (883) <F30846E7-8A05-F4F9-7F6B-A78FBEDA517A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x11f4000 - 0x1282feb com.apple.music.apps.MACore 9.0.2 (440.5) <706C13EA-A316-AE58-943D-69BC4E9C3208> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x12bf000 - 0x130bfff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1330000 - 0x1372fe7 com.apple.music.apps.MAHarmony 9.0.2 (176.3) <493EC005-32AE-EE75-9009-EB12C860D875> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1386000 - 0x1792ffb com.apple.music.apps.MAPlugInGUI 9.0.2 (399.5) <6F3EDD47-C8AA-2274-4A19-8F0FF2F2BAEA> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a1e000 - 0x1b00fff com.apple.music.apps.OMF 9.0.2 (100.3) <7B91193A-D967-0DB7-00AA-BCA7993C707D> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b14000 - 0x2124ff5 com.apple.music.apps.MADSP 9.0.2 (554.8) <646FDF11-6EE8-C771-6AD8-C5784800DEF6> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x2822000 - 0x2842ff7 com.apple.music.apps.LogicFileBrowser 9.0.2 (204.3) <D7A318F6-8FF9-787D-1AB9-CE133BBF8DE8> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2852000 - 0x28cafff com.apple.music.apps.LogicLoopBrowser 9.0.2 (193.3) <597DB84B-3C65-D92C-9221-91571111D0F4> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x28f3000 - 0x2914ff3 com.apple.music.apps.MAApogeeSupport 9.0.2 (292.3) <87FD87CB-5CAC-826C-45BE-37AD78C0E267> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x291f000 - 0x2924fff com.apple.music.apps.MAResources 9.0.2 (204.3) <8DB7BD56-40FD-C1C1-B306-A0D34C9A7BB7> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2929000 - 0x2952fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2963000 - 0x296afff com.apple.AEProfiling 1.2 (22) <CC396984-C1A1-0215-E4E6-920570C49552> /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x2972000 - 0x2981fff com.apple.AERegistration 1.2 (77) <9E328A00-EE04-F5D1-0564-C0BD1C477F03> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2994000 - 0x299ffff com.apple.music.apps.MAUnitTest 9.0.2 (75.3) <7D85F172-8A42-A16A-7491-4344E34DE578> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x29a7000 - 0x2a56feb com.apple.music.apps.MAFiles 9.0.2 (119.3) <539BA78A-3C57-EF8F-35E7-1B6A8FB1C5BA> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2a6f000 - 0x2addfff com.apple.music.apps.MAAudioEngine 9.0.2 (131.8) <E223E042-C9B4-D222-20C8-A28139202665> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2b21000 - 0x2b2afff com.apple.music.apps.MAToolKit 9.0.2 (327.3) <3AD5474C-93BB-A89C-0456-1A77C96F931D> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2b30000 - 0x2b4efef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2b5d000 - 0x2bf9ffc com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2c56000 - 0x2d0bfe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x2d51000 - 0x2d91ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x46a0000 - 0x46ceff7 com.apple.prokit.SnowLeopardPanels 5.0.1 (906) <200EE10C-484D-A71C-ADFF-4DCC8411C31D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x46df000 - 0x46ebff7 +com.rogueamoeba.audiohijackserver.hermes 2.2.5 (2.2.5) <CD6C7A74-BA03-F3A7-0D1E-460E6A043024> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x4798000 - 0x479afff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x47a8000 - 0x47acff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x47b1000 - 0x47b7ffb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x47bc000 - 0x47befff +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x47d0000 - 0x47d8ff7 com.apple.proapps.mrcheckpro 1.4 (361) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x2b94b000 - 0x2b97cfeb +com.digidesign.digidesign.DigiCoreAudioPlugIn 8.0.3prx180 (8.0.3d180) <2B3894FA-5EBF-00EE-3730-D43155B45AE6> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x2b9f4000 - 0x2b9f6ff7 com.apple.music.apps.anvil.resources 9.0.2 (272.3) <594C3BD1-8196-ECBA-577B-4C265565C893> /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x2bff1000 - 0x2bff3ff7 com.apple.music.apps.common.resources 9.0.2 (272.3) <3160C67B-CB1E-98F4-D445-059665841D76> /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x2bff8000 - 0x2bffaff7 com.apple.music.apps.ebp.resources 9.0.2 (272.3) <D7B8918C-96CB-3D0E-3294-A835595214C8> /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x52cf5000 - 0x52e66ff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x52ebd000 - 0x530f9fef com.apple.ATIRadeonX1000GLDriver 1.6.6 (6.0.6) <E0A5525E-5037-2D4A-0879-2FB8F865FBC2> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x5311c000 - 0x53138ff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x53151000 - 0x53153ff7 com.apple.music.apps.efx.resources 9.0.2 (272.3) <C2CC6EA7-B1CB-5CAD-82CC-C074F9C38235> /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x53158000 - 0x5315aff7 com.apple.music.apps.egt.resources 9.0.2 (272.3) <E483471D-671C-091F-AC3A-18354E09F77F> /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x53613000 - 0x53615ff7 com.apple.music.apps.emx.resources 9.0.2 (272.3) <0303574C-DA1C-6D3D-515D-8577386614AD> /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x5361a000 - 0x5361cff7 com.apple.music.apps.es1.resources 9.0.2 (272.3) <244135E2-881C-3AAE-29F0-B5A976F4FAD2> /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x53621000 - 0x53623ff7 com.apple.music.apps.es2.resources 9.0.2 (272.3) <71E054D1-8C15-8CD3-53E5-C9C953EC2831> /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x53628000 - 0x5362aff7 com.apple.music.apps.esp.resources 9.0.2 (272.3) <B72CE454-D225-0A10-2CB6-FAD913A867F6> /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x5362f000 - 0x53631ff7 com.apple.music.apps.evb3.resources 9.0.2 (272.3) <4E6065AB-D841-D5E5-314D-65B535CF2D12> /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x53636000 - 0x53638ff7 com.apple.music.apps.evd6.resources 9.0.2 (272.3) <3DD4AC73-C885-0095-D0BC-CC588A95BD2E> /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x5363d000 - 0x5363fff7 com.apple.music.apps.evoc.resources 9.0.2 (272.3) <F6895942-AA20-92B2-6BB6-49CD758BDC51> /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x53644000 - 0x53646ff7 com.apple.music.apps.evp88.resources 9.0.2 (272.3) <4AFCEE14-A4B7-432A-C5CA-DB1435F1A97F> /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x5364b000 - 0x5364dff7 com.apple.music.apps.exs24.resources 9.0.2 (272.3) <82BF276A-E325-4A2B-BBE2-9D15039DA135> /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x53652000 - 0x53654fff com.apple.music.apps.guitaramp.resources 9.0.2 (272.3) <3AEFDED5-90FA-F6E6-5559-1E06715031EC> /Applications/Logic Pro.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x53659000 - 0x5365bff7 com.apple.music.apps.guitarcontrols.resources 9.0.2 (272.3) <2D6300E8-51C3-FC81-7BE1-B02623223C31> /Applications/Logic Pro.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x53660000 - 0x53662fff com.apple.music.apps.mutapdel.resources 9.0.2 (272.3) <2CEDCE11-ABC9-FBB5-4100-505F93B84FE7> /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x53667000 - 0x53669fff com.apple.music.apps.pedalboard.resources 9.0.2 (272.3) <412892BD-E694-E93B-975E-35889B034519> /Applications/Logic Pro.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x5366e000 - 0x53670fff com.apple.music.apps.revolver.resources 9.0.2 (272.3) <F97E6C10-FA37-01A6-C12B-F156D3DDB337> /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x53675000 - 0x53677ff7 com.apple.music.apps.sphere.resources 9.0.2 (272.3) <EF9DCBED-A571-4CB9-FF65-6BA293754724> /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x536c9000 - 0x536e4ff7 com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x53ff8000 - 0x53ffaff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x5a765000 - 0x5a7c4fe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/chazjazmusic/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x5a7e3000 - 0x5aa9dfcf +com.ableton.live-engine 6.0.11 (6.0.11) <3F4B1302-5C98-4A90-9882-7171F72ED2E3> /Applications/Live 6.0.11 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x5ade1000 - 0x5ae45fe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <19C0FA03-FC58-CCFE-395D-DD4125A0B811> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x5ae65000 - 0x5aed7fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x5aee5000 - 0x5af2bffb com.apple.motion.component 1.0 (698) <BB552040-6F80-5207-E007-BB94A59D748D> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x5af31000 - 0x5af33ff7 Motion ??? (???) <CB022D7E-217B-EF89-4974-72C50834B41D> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x5af39000 - 0x5af8901f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x5b800000 - 0x5b89cff8 com.apple.procore.framework 4.0 (712) <09EE33B4-412C-FC25-5356-1DE47695BAA6> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x8f706000 - 0x8fa7eff7 com.apple.GeForce7xxxGLDriver 1.6.6 (6.0.6) <B480321A-51C9-F064-F0F0-BB4DE28DD006> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90043ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90044000 - 0x90079ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9007a000 - 0x9007bff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x900a6000 - 0x90984ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9098b000 - 0x909faff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90cf6000 - 0x90d07ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90e1d000 - 0x90e5eff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90e5f000 - 0x90e6cff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e86000 - 0x90faaff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90fab000 - 0x9103cfe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9103d000 - 0x911bffe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x911c0000 - 0x911d8ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x911d9000 - 0x91288ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9128c000 - 0x9128fff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91290000 - 0x913cffe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x913d0000 - 0x91428fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91454000 - 0x91474fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x91475000 - 0x91493ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x914b3000 - 0x91509ff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9150a000 - 0x915c3fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x915c4000 - 0x91635ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91636000 - 0x91707fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x91708000 - 0x9187ffef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x918c7000 - 0x91905ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91906000 - 0x91956fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91957000 - 0x91a4dff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91a4e000 - 0x91abeff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91abf000 - 0x91adaff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ae6000 - 0x91b1bff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91b1c000 - 0x91b4fff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91b6e000 - 0x91b6eff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b6f000 - 0x91b79fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91c6f000 - 0x920a4ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x920a5000 - 0x920e7fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92191000 - 0x92192ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92193000 - 0x92393feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92399000 - 0x9239fff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x923a0000 - 0x923bffe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x923c0000 - 0x923d5fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x923d6000 - 0x923e3ff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x923e4000 - 0x92434ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9251a000 - 0x925b2fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x925b3000 - 0x92690ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92691000 - 0x9284dfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9284e000 - 0x928a8ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x928a9000 - 0x92ba2fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92ba3000 - 0x92c25ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92c26000 - 0x92c2aff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92c2b000 - 0x92dcffeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x92dd0000 - 0x92dd1ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92dd2000 - 0x92e0fff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92e10000 - 0x92e40ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x92e41000 - 0x9306cff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93075000 - 0x9309bfff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9309c000 - 0x9310aff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9310b000 - 0x93184ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x93195000 - 0x93199ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x931ab000 - 0x931afff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x931d0000 - 0x93207ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x933ca000 - 0x933cdff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x933ce000 - 0x933e0ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9353b000 - 0x9353bff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9353c000 - 0x9366afe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9366b000 - 0x93745ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93746000 - 0x93749ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9374a000 - 0x9374aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9374b000 - 0x937f3ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x937f4000 - 0x9383aff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x9383b000 - 0x93841fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94184000 - 0x941c3ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x941c4000 - 0x9421efe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x94250000 - 0x9428bfe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9428c000 - 0x94339fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9433a000 - 0x94372ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94373000 - 0x9437dff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x943bf000 - 0x946e2fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x946e3000 - 0x94824ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94825000 - 0x94861fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94862000 - 0x94864ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94865000 - 0x948b2feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x948b3000 - 0x948f7fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9490c000 - 0x9490efe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x94919000 - 0x94929ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94969000 - 0x94b44ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94b45000 - 0x94baffe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94bb0000 - 0x94e20ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94e8c000 - 0x94e8cff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94e8d000 - 0x94f8efe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x94f97000 - 0x94fa0ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94fa1000 - 0x94fdafe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94fe6000 - 0x94ffafe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9506a000 - 0x9509bff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9509c000 - 0x9509cff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9509d000 - 0x950e1ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95102000 - 0x955b0fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x955dc000 - 0x955f0ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x955f3000 - 0x955fdffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95642000 - 0x9566aff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9566b000 - 0x956b4fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x957e0000 - 0x95fc34b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95feb000 - 0x95ff2fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95ff3000 - 0x96036ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96037000 - 0x96037ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96038000 - 0x96048ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96049000 - 0x962abff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x962b4000 - 0x96363fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96364000 - 0x9665dff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9665e000 - 0x96711fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96712000 - 0x96739ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9673a000 - 0x967e8ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x967e9000 - 0x96bffff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96c00000 - 0x96c3affb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96d30000 - 0x96d30ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96d31000 - 0x96d55ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96d56000 - 0x96d8aff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x96d9e000 - 0x96e79ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x96e7a000 - 0x96edeffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96edf000 - 0x97246ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97247000 - 0x97247ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97253000 - 0x981e1ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x981e2000 - 0x981eeff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x981ef000 - 0x9828cfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9828d000 - 0x982deff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98349000 - 0x983a9fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x983aa000 - 0x983cafe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x983cb000 - 0x983e7fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x983e8000 - 0x98438ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98439000 - 0x9852bff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x9852c000 - 0x9884bfe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9884c000 - 0x988c6fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x988c7000 - 0x988d4ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x988d5000 - 0x988daff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x988db000 - 0x988e9fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x988ea000 - 0x988eaff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x988eb000 - 0x98962fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98963000 - 0x989e3feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x98a73000 - 0x98a7eff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x98a7f000 - 0x98c61fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x98c62000 - 0x98cfefe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98d37000 - 0x98e01fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98e37000 - 0x98f63fe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98f64000 - 0x98f86fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x98f87000 - 0x98f8afe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98f8b000 - 0x99032fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x99033000 - 0x99140ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99173000 - 0x99180ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99181000 - 0x991f5fef com.apple.CoreSymbolication 2.1 (23.2) <D4339C60-617B-4D5E-A3B1-C8B0B22FAE09> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x991f6000 - 0x991fdff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99315000 - 0x994b2fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <FF236E3F-A016-2AEB-3E62-7108E76EF825> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x994b3000 - 0x994b5ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x994b6000 - 0x995b8fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-4
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-2
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST3500641AS P, 465.76 GB
    Serial ATA Device: ST3750640AS, 698.64 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D, 7.24 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd300000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd320000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9131, 0xfd500000
    USB Device: Jog and Shuttle, 0x05f3, 0x0240, 0xfd510000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x9223, 0xfd520000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    USB Device: Hub, 0x03eb (Atmel Corporation), 0x3301, 0x3d200000
    USB Device: MXO by Matrox, 0x18ea, 0x8003, 0x3d210000
    USB Device: Hub, 0x0424 (SMSC), 0x2507, 0x3d220000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0234, 0x3d222000
    USB Device: XD-0608-U, 0x056a (WACOM Co., Ltd.), 0x0042, 0x3d224000
    USB Device: USB Axiom 49, 0x0763 (M-Audio), 0x0199, 0x3d223000
    USB Device: SoundSticks, 0x05fc (Harman International), 0x7849, 0x3d230000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x911c, 0x3d240000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x921c, 0x3d242000
    USB Device: USB Trackball, 0x046d (Logitech Inc.), 0xc408, 0x1d100000
    USB Device: USB Optical Mouse, 0x046d (Logitech Inc.), 0xc018, 0x1d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown
    I am calling Apple in the morning at 6....

  • Error Message pop up "the operation could not be c...

    I just have my  5230 connect to the internet and I want to use the ovi store. The store was working good when I was browsing the store. Things went on as I accessed the a "Agreement" page (I don't really know how to called that page, it is a page with a "I agree" button), then I pressed that button. But once I pressed that button, the store loaded for a few seconds and a error Message pop up, it said "the operation could not be completed due to an error" and I was back to that "Agreement" page. When I click the "I agree" again, the error popped up again. Now I can't download any software.
    Also I always saw a error message about Java when I am using the nokia browser to access
    the internet. It is called "Java error log" or something. How can I deal with this problem?
    Please Help Me.
    Thanks.

    ed for me too. Strange that Nokia support didn't know usernames were now case sensitive. They had me doing all that hard reset stuff when it was that simple. Strange also that the web site is NOT case sensitive. A little consistency in Ovi store would make it a whole lot better. Am I the only one, for instance, who is chagrined by being asked to sign on when I want to download somethng and, once I've signed on I have to click on Download again? Grr

  • Operator overloading!!!

    hi...
    Operator overloading is a part of an OOP. Is Operator overloading exists in Java or not?
    please clarify it.
    thanking u, with regards.

    masijade. wrote:
    Operator overloading is not a part of OOP. It is one of the last things you would ever want in an OOP language, I think this statement is too strong. Yes, it was left out of Java because of the problems it caused in C++, but it's not the last thing you'd ever want.
    and no it is not supported in Java.This is true.
    A brief reading of the Java language highlights would have told you this.
    %

  • SQL operations are not allowed with no global transaction by default for X

    Hi All,
    I am getting the above mentioned error.
    java.sql.SQLException: SQL operations are not allowed with no global transaction by default for XA drivers. If the XA driver supports performing SQL operations with no global transaction, explicitly allow it by setting "SupportsLocalTransaction" JDBC connection pool property to true. In this case, a
    lso remember to complete the local transaction before using the connection again for global transaction, else a XAER_OUTSIDE XAException may result. To complete a local transaction, you can either set auto commit to true or call Connection.commit() or Connection.rollback().
    I am developing a web application. I have jsp, servlets, JDBC classes.
    I am using DataSource and Connection pools.
    I am on WLS 8.1 sp3 and Oracle 10.1.
    Part of My Config file looks as follows:
    <JDBCConnectionPool DriverName="weblogic.jdbcx.oracle.OracleDataSource" KeepLogicalConnOpenOnRelease="true" KeepXAConnTillTxComplete="false" Name="AUMDataSource" NeedTxCtxOnClose="false" NewXAConnForCommit="false" Password="{3DES}AKRkWgdzXN8WrXSRtSvJ6g==" Properties="user=pibsrmgr;portNumber=1521;SID=pibsrdod;serverName=pibsrdod.dtu.mlam.ml.com" RollbackLocalTxUponConnClose="true" SupportsLocalTransaction="false" Targets="myserver" TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:bea:oracle://pibsrdod.dtu.mlam.ml.com:1521" XAEndOnlyOnce="false" />
    <JDBCTxDataSource EnableTwoPhaseCommit="true" JNDIName="jdbc/AUMDataSource" Name="AUMDataSource" PoolName="AUMDataSource" Targets="myserver" />
    Any help will be appreciated.
    Thanks
    ---Radhe

    Hi,
    Regarding Transactions , the following link can helpful to you .
    Regards,
    Prasanna Yalam

Maybe you are looking for

  • VPN users can't connect to a Site-To-Site branch office

    I have an asa 5510 that allows people to VPN into it. they get a private IP address of 10.1.4.x when they connect. All of my sites (subnets) that are on my MPLS network were always accessible from a vpn connection. these include the subnets 192.168.0

  • How to repair my File vault

    Can I have assistence in reparing my file vault form macbook pro OSX 10.6.8. Currently, i cant login but accepted my password but i keep on receiving massage that my file vault need reparing and when i click ok it says error has occur and try later!

  • [SOLVED] Upgrading after four month (version `GLIBC_2.16' not found)

    Hi all! After some time I decide to upgrade and starting with read the manual at the site. Firstly, I run pacman -Syu --ignore glibc,curl this exit successfully Secondly, pacman -Su but this give me error pacman: /lib/libc.so.6: version `GLIBC_2.16'

  • Serious CS5+6 Audio out of sync on MP4 and Quicktime HD (AC3/AAC) export problem

    Hello, while exporting our video files and importing them into our projects to check the sync we noticed that if we export in MP4 1080p H264 format the audio is 1/2 video frame out of sync compared to the original. This happens with both original aud

  • Problem with 80gb Classic, freezing/games disappearing...

    I'm listening to a song, playing Solitaire. iPod freezes and then goes to the Apple Logo screen for a little bit. It reboots and I re-start a song. It plays. I go back to play Solitaire... there are no games on the iPod. The iPod was not connected to