How to reference an application without opening it?

The attached vi is used to determine the currently installed version of Microsoft Word. I have used this in the past with built applications. This is placed in the calling vi’s initialization. However, just now, it opens the Word program. (Before it didn’t.) I don’t want to start Word initially because the report is not generated yet and also the user has the option of printing the report in Excel. The following are my questions:
Why am I now having this problem? I cannot think of anything different other than it’s on a different computer.
What can be done to prevent starting the Word program at the calling vi’s initialization?
What subject matter is this involved with?
Is there a document or tutorial on this issue?
I’m using LV 7.1 (with Application Builder), Win2000 and Microsoft Office 2003
Attachments:
Word_Version.vi ‏23 KB

I did run your VI and the word windows doesn't show up but i noticed that WINWORD.exe process is running even when VI stops.
I modified the VI (see attached), that should work for you. Using LV 7.1, WinXP and Word 2003.
Enjoy!
A Rafiq
Attachments:
Word_Version.vi ‏26 KB

Similar Messages

  • How do I delete emails without opening them on iMac with Mavericks and 10.9.2 system

    How do i delete emails without opening them on my Imac with Maverick 10.9.2 operating system

    Right or control click the email then click Delete.

  • Run Swing application without opening DOS prompt window

    is it possible to run a Swing application without opening a command interface window in MS Windows?
    thanks

    Don't know if you mean that, but if you try to call javaw.exe instead of java.exe there pops no prompt up.

  • How build stand alone application without labview

    I have main vi and contain the sub vi i need build stand alone application without labview
    how build stand alone application without labview?
    thank and regard

    I assume that the poster means to run this on a computer without the development environment installed.  That is what the app builder is for. Review Altenbach's post.  This being said, there will need to be a runtime engine installed on the target PC. You can 'bundle' that with your build application and install it together, although I usually prefer Not to do that, and make that a seperate step because it is rather large, and if the target already has it, then it is wasted space.  Speaking of run time engine, I have seen negative reactions to it by my customers, but after sitting down and explaining that, with few exceptions, every application requires a run time engine. It is just that some are bundled with windows, or installed through windows update.  Once explained, it usually quiets the opposition. [Paul steps off soap box now]
    Paul <--Always Learning!!!
    sense and simplicity.
    Browse my sample VIs?

  • How to run a Plugin, without opening Adobe indesign

    Hi,
    Does anyone know how to run a plugin as a service or something like that...
    What i want to do is,
        I have written a plugin that can read texts from indd files & save them as .txt files.
    now i want to put indd files in to a folder & once a new file comes to the folder, read that new file automatically  and save as txt.
    for that I want to run the plugin, without opening the indd file.
    I hope CS6 SDK support to do that.
    Please let me know if anyone has any idea...
    Thanks.

    Hi Menan,
    Thank you very much for your reply...
    I'll explain you what my requirement is,
    My final goal is to run the Indesign application(including my plugin) in a server &  put all indd files in to a location(ex.folder) &
    once an indd file comes to that folder it'll be automatically read by Indesign application & save the extracted data in a separate location(ex.another folder) as tex files. then human interaction is not needed...
    My precsent problem is,
           Can I read an indd file, without opening indd file in Indesign application (may be giving a path to a indd files included folder or some way like that).
    Currently,
      first i open the Indesign Application -> Open the indd file(intended to be read) -> Run my plugin.
    Now I Get the document with,
    IDocument* document = Utils<ILayoutUIUtils>()->GetFrontDocument();
    But what I want is,
    while the Indesign application is running on a PC, if an indd file comes to a given location(folder) it to be read automaticaly without opening my pluging.
    To do that My idea is,
      * Any time when the Indesign apllication is opend my plugin should automatically start running,
    * once a new file comes to a given location(folder) plugin shoud be automatically triggered & read the file.
    Please help me with your ideas..
    Thanks.

  • How to reference a class without using the new keyword

    I need to access some information from a class using the getter, but I don't want to use the new keyword because it will erase the information in the class. How can I reference the class without using the new keyword.
    ContactInfo c = new ContactInfo(); // problem is here because it erases the info in the class
    c.getFirstName();

    quedogf94 wrote:
    I need to access some information from a class using the getter, but I don't want to use the new keyword because it will erase the information in the class. How can I reference the class without using the new keyword.
    ContactInfo c = new ContactInfo(); // problem is here because it erases the info in the class
    c.getFirstName();No.
    Using new does not erase anything. There's nothing to erase. It's brand new. It creates a new instance, and whatever that constructor puts in there, is there. If you then change the contents of that instance, and you want to see them, you have to have maintained a reference to it somewhere, and access that instance's state through that reference.
    As already stated, you seem to be confused between class and instance, at the very least.
    Run this. Study the output carefully. Make sure you understand why you see what you do. Then, if you're still confused, try to rephrase your question in a way that makes some sense based on what you've observed.
    (And not that accessing a class (static) member through a reference, like foo1.getNumFoos() is syntactically legal, but is bad form, since it looks like you're accessing an instance (non-static) member. I do it here just for demonstration purposes.)
    public class Foo {
      private static int numFoos; // class variable
      private int x; // instance varaible
      public Foo(int x) {
        this.x = x;
        numFoos++;
      // class method
      public static int getNumFoos() {
        return numFoos;
      // instance method 
      public int getX() {
        return x;
      public static void main (String[] args) {
        System.out.println ("Foo.numFoos is " + Foo.getNumFoos ());
        System.out.println ();
        Foo foo1 = new Foo(42);
        System.out.println ("Foo.numFoos is " + Foo.getNumFoos ());
        System.out.println ("foo1.numFoos is " + foo1.getNumFoos ());
        System.out.println ("foo1.x is " + foo1.getX ());
        System.out.println ();
        Foo foo2 = new Foo(666);
        System.out.println ("Foo.numFoos is " + Foo.getNumFoos ());
        System.out.println ("foo1.numFoos is " + foo1.getNumFoos ());
        System.out.println ("foo1.x is " + foo1.getX ());
        System.out.println ("foo2.numFoos is " + foo2.getNumFoos ());
        System.out.println ("foo2.x is " + foo2.getX ());
        System.out.println ();
    }

  • HOW TO KNOW WHAT APPLICATION HAS OPEN A PDF FORM

    Hello,
    I would like to know how I can verify that application has opened a certain PDF form (for example Reader or Professional). This checking must be done from the same form when the document is opened (using JavaScript for example).
    b Thank you for your time.

    Have you seen the example that Lori DeFurio has posted on the developer site to do just this? The javascript example in the form works in both Acrobat and LiveCycle Forms. A sample of the results are:
    Viewer Version = 7.05
    Viewer Type = Exchange-Pro
    Major Form Version = 7
    Minor Form Version = 7.07
    http://partners.adobe.com/public/developer/en/tips/lc_viewer_version.pdf
    Hope this helps.
    Angie Okamoto
    www.techedsolutions.com

  • How to delete junk mail without opening first?

    How can I delete all junk messages without opening each one separely?

    Swipe across the email in the preview window to bring up a red delete button. But you still have to do this one at a time.

  • How do I delete email without opening it?

    I can't seem to delete an email without opening it, and I'm worried about malware and all that. How do I delete an email without it getting opened? I've tried selecting it with another message and then deleting the group, but it still opens. Someone told me to double-click the separator bar between the preview and message panes, but nothing happens when I do that.
    I am a new Mac user, only been at this a few weeks, so please bear with me and use small words. Thank you for helping a noob.

    Tuttle's tip of putting your arrow icon in the middle of a message and dragging to the trash is a good one.
    If your concern is that selecting an email will trigger hidden tags in html messages giving the sender the opportunity to see if you clicked on their email then your point is valid.
    Apple Mail defaults to loading remote images in HTML based email.  You can turn this setting off by going to the menubar and choosing Mail > Preferences.  Chose the Viewing option and turn off "Display remote images in HTML messages."
    Now when you delete a message it won't matter if you selected it or not.
    - Stephen
    http://learni.st/users/Riptide360/boards/69477-optimizing-apple-mail

  • How to execute web applications without deploying them?

    How can I execute web applications without deploying them (without mentioning them in the server.xml)?
    I have an IWS 6.1 SP1 installed with default parameters (JES). I would like that a posix user could execute his own web application without administrator collaboration.
    Does it exist some sort of "autodeploy" like in tomcat?
    (I know about the invoker mapping in default-web.xml, just I don't realy understand what does it eventuate. I tried to unzip webapps-simple.war in the directory $IWS_SERVER_HOME/webapps/$instance_name/servlet/tmp/
    but the http://a.a.tg/servlet/tmp request failed:
    javax.servlet.ServletException: WEB2784: Wrapper cannot find servlet class tmp or a class it depends on
    ----- Root Cause -----
    java.lang.ClassNotFoundException: tmp
    How can I solve this? Users should have write permission to the directories in the classpath to put their servlet.class files into? Bad idea...
    (I tried to "execute" the $IWS_SERVER_HOME/plugins/java/samples/webapps/simple/webapps-simple.war)
    (Sorry for my language skills)

    Do as many of the rest of us do, until this behavior is changed (if ever). Eport your WEb gallery to your Hd and use an FTP client, there are so many, including Drreamweaver's, and Shareware ones, and upload just the relevant files/folders. Some can even check and do this for you.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.10 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • How to delete incoming mail without opening

    I receive many bogus e.mails pertaining to come from various banks of which I have no connection. I like to delete these without opening but to delete them it seems you have to open them first. Any help with this issue would be appreciated. Thank you.

    I think you are over-worrying. TB doesn't run scripts in messages, so unless you click on anything, it can't launch covert content. You could switch off HTMl to prevent webbugs.
    You should find that right-click then delete will do the job.

  • How to run java application without having java environment in  a machine

    can i run java application without having java environment(JVM) in a machine.I mean i dont have installed j2se or jdk in my machine.And i have an j2ee application running on another host which is built in swings.I want to access that application in my machine
    can any one help regarding my problem

    If you only need to access the program from one machine and you are running a Unix-like operating system (e.g., Linux, Solaris), you can use the remote display capabilities of X11. In this case you have to choose the host where the app will be displayed when you start it:
    $ DISPLAY=<hostname>:0.0
    $ export DISPLAY
    $ java ...
    If you want to be able to display it on both machines at the same time, or if you are using windows, then try something like VNC (http;//www.realvnc.com). Or if you are running windows and your version supports it, you can use windows remote desktop.

  • How can I find out without opening the box whether my IPAD is a 4th generation with retina display

    ow can I find out without opening the box whether my IPAD is a 4th generation

    Did it fall of the back of a truck? Can't you just ask where you bought it?
    Or check here: http://support.apple.com/kb/ht5452

  • How to close sub-application without close main-application?

    My main application has a menu which is used to open sub-application window. When I want to close the sub-application, I do not want to use System.exit(0), because it will close the main-application too.
    And if I use setVisible(false), the sub-application remains in memory.
    How can I close a sub-application clearly and keep the main-application open?

    Stephen:
    Some other object may be holding reference to this object.
    Here is how you debug such as problem.
    1. Run your app in the IDE's debugger.
    2. After you think all refs to the object should have gone away, pause the debug session.
    3. Using the View/Debug Windows/Heap menu, bring up the heap window.
    4. Right mouse click on the heap window. Enter the class name (package qualified) of the object which isn't being collected.
    5. Then, find the object that instance. Select it.
    6. Do right mouse click on that and select 'Show Reference Paths.'
    It will show paths to this object. It will show you who's holding ref to this object, preventing it from being garbage collected.
    Thanks.
    Sung

  • How to factory reset safari without opening it?

    The latest version of Safari on my Retina MacBook Pro with Yosemite quit unexpectedly while browsing. I can not start it now, is quits immediately. I have tried basically every method written on forums, deleting different Safari files/extensions, etc. Sometimes it stays open for 2 seconds, but in most cases it quits immediately.
    I would really appreciate if someone could help.

    Here is the Safari report, if it helps:
    Process:               Safari [551]
    Path:                  /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:            com.apple.Safari
    Version:               8.0.3 (10600.3.10.2)
    Build Info:            WebBrowser-7600003010002000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Safari [551]
    User ID:               501
    Date/Time:             2014-12-26 17:08:02.262 +0100
    OS Version:            Mac OS X 10.10.2 (14C81h)
    Report Version:        11
    Anonymous UUID:        ECA28C5B-F900-829F-6971-386D422AC421
    Time Awake Since Boot: 610 seconds
    Crashed Thread:        14
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
        __TEXT                 000000010789e000-000000010789f000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x00007fff8a4d6ffc CFArrayGetCount + 28
    1   com.apple.CoreFoundation       0x00007fff8a506a6c -[CFPrefsSearchListSource alreadylocked_copyDictionary] + 60
    2   com.apple.CoreFoundation       0x00007fff8a5019ca -[CFPrefsSearchListSource alreadylocked_copyValueForKey:] + 42
    3   com.apple.CoreFoundation       0x00007fff8a67a43c ___CFPreferencesCopyAppValueWithContainer_block_invoke + 60
    4   com.apple.CoreFoundation       0x00007fff8a647fa9 +[CFPrefsSearchListSource withSearchListForIdentifier:container:perform:] + 729
    5   com.apple.CoreFoundation       0x00007fff8a67a3b7 _CFPreferencesCopyAppValueWithContainer + 183
    6   com.apple.CoreFoundation       0x00007fff8a67a4cd _CFPreferencesGetAppBooleanValueWithContainer + 29
    7   com.apple.Foundation           0x00007fff8515c4cc -[NSUserDefaults(NSUserDefaults) boolForKey:] + 90
    8   com.apple.Safari.framework     0x00007fff910c114a -[BrowserWKView _commonBrowserWKViewInit] + 240
    9   com.apple.Safari.framework     0x00007fff910c0ecb -[BrowserWKView initWithDocument:frame:context:pageGroup:usePrivateBrowsing:] + 199
    10  com.apple.Safari.framework     0x00007fff910524a1 -[BrowserDocument initWithContentsOfRequest:usePrivateBrowsing:] + 257
    11  com.apple.Safari.framework     0x00007fff91052660 -[BrowserDocument init] + 314
    12  com.apple.AppKit               0x00007fff87b172ef -[NSDocument initWithType:error:] + 29
    13  com.apple.AppKit               0x00007fff87b16be5 -[NSDocumentController makeUntitledDocumentOfType:error:] + 445
    14  com.apple.AppKit               0x00007fff87b16226 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 307
    15  com.apple.AppKit               0x00007fff87b160b4 -[NSDocumentController newDocument:] + 36
    16  com.apple.Safari.framework     0x00007fff91091900 +[BrowserWindowControllerMac reopen] + 256
    17  com.apple.Safari.framework     0x00007fff90f9f14f -[AppController applicationOpenUntitledFile:] + 22
    18  com.apple.AppKit               0x00007fff87a4bdda -[NSApplication _doOpenUntitled] + 424
    19  com.apple.AppKit               0x00007fff879855c1 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke + 252
    20  com.apple.AppKit               0x00007fff87c90319 __97-[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:]_block_invoke_3 + 140
    21  com.apple.AppKit               0x00007fff87c8fd11 -[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:] + 798
    22  com.apple.AppKit               0x00007fff8782d726 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 331
    23  com.apple.AppKit               0x00007fff8782d4a9 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    24  com.apple.AppKit               0x00007fff8782cef5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    25  com.apple.Foundation           0x00007fff851731e8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    26  com.apple.Foundation           0x00007fff85173059 _NSAppleEventManagerGenericHandler + 102
    27  com.apple.AE                   0x00007fff90c2399c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    28  com.apple.AE                   0x00007fff90c23719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    29  com.apple.AE                   0x00007fff90c23623 aeProcessAppleEvent + 295
    30  com.apple.HIToolbox           0x00007fff8ce8cb0e AEProcessAppleEvent + 56
    31  com.apple.AppKit               0x00007fff878295a6 _DPSNextEvent + 2665
    32  com.apple.AppKit               0x00007fff878286b0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    33  com.apple.Safari.framework     0x00007fff910098a0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    34  com.apple.AppKit               0x00007fff8781c4e3 -[NSApplication run] + 594
    35  com.apple.AppKit               0x00007fff87807974 NSApplicationMain + 1832
    36  libdyld.dylib                 0x00007fff86a895c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff85b9a232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8f7d4a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 7:: WebCore: IconDatabase
    0   libsystem_kernel.dylib         0x00007fff85b99136 __psynch_cvwait + 10
    1   com.apple.WebCore             0x00007fff8da8999b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore             0x00007fff8da86ae9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore       0x00007fff88b939af ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff89182268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff891821e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8918041d thread_start + 13
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff85b944de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85b9364f mach_msg + 55
    2   com.apple.QuartzCore           0x00007fff88374abb CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore           0x00007fff883749ee thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff89182268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff891821e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8918041d thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff85b944de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85b9364f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8a531b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8a530ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8a530858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff89cb1bf0 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff851b990a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff89182268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff891821e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8918041d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff85b9994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8918040d start_wqthread + 13
    Thread 14 Crashed:
    0   libsystem_pthread.dylib       0x00007fff89180601 _pthread_mutex_lock + 87
    1   libsystem_c.dylib             0x00007fff89af5b58 vfprintf_l + 28
    2   libsystem_c.dylib             0x00007fff89aee600 fprintf + 186
    3   ???                           0x000000014d30e5dc 0 + 5590017500
    Thread 14 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7587c1d8  rcx: 0x00007fff7587c1f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff7587c1f0  rsi: 0x00007fff89180a80  rbp: 0x000000014d30ae30  rsp: 0x000000014d30adb0
       r8: 0x000000014d312000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff7587b6b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff89180601  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10789e000 -        0x10789efff  com.apple.Safari (8.0.3 - 10600.3.10.2) <22D0EDF7-923F-3CD3-BC11-ED976C1B6A8B> /Applications/Safari.app/Contents/MacOS/Safari
           0x14cc30000 -        0x14cc30fef +cl_kernels (???) <ACE63354-30D9-418A-8BA8-C5475F0E5AF5> cl_kernels
           0x14cc3e000 -        0x14cc3efe7 +cl_kernels (???) <EF8F12A0-06A3-4673-B396-251FD41E6D8D> cl_kernels
           0x14ce4a000 -        0x14cf30fef  unorm8_bgra.dylib (2.4.5) <95851023-1278-3C02-B960-1ADAC29BAC97> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x14d2b5000 -        0x14d2e4fff  com.apple.LookupFramework (1.1 - 148) <70BEF836-19C5-30F7-9177-F5F6A152B890> /System/Library/PrivateFrameworks/Lookup.framework/Lookup
        0x7fff6c2ce000 -     0x7fff6c304837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff84bb2000 -     0x7fff84f89fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff84fe5000 -     0x7fff85012fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff85013000 -     0x7fff85015ff7  libsystem_sandbox.dylib (358.1.1) <3A306BEC-6F97-3234-933B-30242E3B2501> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff85016000 -     0x7fff85018fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff85019000 -     0x7fff85127fff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff85128000 -     0x7fff85150fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff85151000 -     0x7fff8547ffff  com.apple.Foundation (6.9 - 1152.12) <C0EE9DA6-C111-358A-8874-DA175BB797D6> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85574000 -     0x7fff855a4ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff85606000 -     0x7fff858b2fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff858b3000 -     0x7fff85b82ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff85b83000 -     0x7fff85ba0fff  libsystem_kernel.dylib (2782.10.67) <9FEEFF8E-0582-32CF-ABDE-5B05E23E7D37> /usr/lib/system/libsystem_kernel.dylib
        0x7fff85ba1000 -     0x7fff85ba1fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff85ba2000 -     0x7fff85bb8ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <3E27D05A-F334-3D42-9722-9583D30ED074> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff85bb9000 -     0x7fff85c2dff3  com.apple.securityfoundation (6.0 - 55126) <DCE656B5-8F7C-3D83-AA89-517E7B7D6171> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff85ec5000 -     0x7fff86230fff  com.apple.VideoToolbox (1.0 - 1562.107) <679478D8-FF2A-3F6C-8D71-1A110844AB31> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff862dc000 -     0x7fff863fefff  com.apple.LaunchServices (644.12.1 - 644.12.1) <18B05312-9817-3C9E-917E-62C7220D42B2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff863ff000 -     0x7fff86401fff  com.apple.marco (10.0 - 1000) <ECD31951-F96E-3F5C-B468-729BBEBDCCE3> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8672a000 -     0x7fff8681cff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8681d000 -     0x7fff86827ff7  com.apple.CrashReporterSupport (10.10 - 629) <E0E448CF-EBBA-3401-9EAA-44A6850DDABB> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff86a86000 -     0x7fff86a89ff7  libdyld.dylib (353.2.1) <CAE0F5AE-21C1-3C20-A228-3BC919E6DFDB> /usr/lib/system/libdyld.dylib
        0x7fff86a8a000 -     0x7fff86aa1ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff86aa4000 -     0x7fff86b98fff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff86ba9000 -     0x7fff86c58fe7  libvMisc.dylib (516) <6739E390-46E7-3BFA-9B69-B278562326E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff86c59000 -     0x7fff86c7dff7  com.apple.facetimeservices (10.0 - 1000) <3DCF679D-B06D-3CB4-AE6E-FBC122959529> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff86c7e000 -     0x7fff86d12fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff86d13000 -     0x7fff86d25ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86d26000 -     0x7fff86f8eff7  com.apple.security (7.0 - 57031.10.6) <2AC5904F-303F-3026-A0A3-FC29F6F41A1F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86f94000 -     0x7fff86fa7ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff86fa8000 -     0x7fff86fe3fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff86fe4000 -     0x7fff86ff6fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff86ff7000 -     0x7fff86ffcff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff87012000 -     0x7fff8702ffff  com.apple.DistributionKit (700 - 920) <E0ED0C5F-6C97-3AB5-A33C-58DE0C1100A3> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff87030000 -     0x7fff87034ff7  libGIF.dylib (1232) <3C70FBBC-FBA5-3013-A440-05D68B63885F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff87035000 -     0x7fff87058ff7  com.apple.framework.familycontrols (4.1 - 410) <153DC4C9-3C06-3147-8AC6-024AB4819C00> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff87059000 -     0x7fff87089ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8708a000 -     0x7fff87100fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff87101000 -     0x7fff87179ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8717a000 -     0x7fff871b2ffb  com.apple.datadetectors (5.0 - 286) <72636B83-1B78-3F61-AAF8-E33F7FCA1E24> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff871b3000 -     0x7fff87201fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff87202000 -     0x7fff87204fff  libCVMSPluginSupport.dylib (11.1.1) <DA0706C5-F02A-3F3D-8EBA-18C04313CA2C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87205000 -     0x7fff87207fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff87208000 -     0x7fff8727aff7  com.apple.framework.IOKit (2.0.2 - 1050.10.6) <293BA01A-1743-3B3E-98FD-43F13E479B2D> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8727b000 -     0x7fff8727cfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff87286000 -     0x7fff87288ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff872a3000 -     0x7fff872abff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff872ac000 -     0x7fff872aefff  libsystem_configuration.dylib (699.1.5) <EB09DC50-F81D-3143-ABAB-F2169565C33D> /usr/lib/system/libsystem_configuration.dylib
        0x7fff872af000 -     0x7fff874f0ff7  com.apple.AddressBook.framework (9.0 - 1561) <9DEEDCEA-9436-3262-8BF0-685CA9327EDF> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff874fc000 -     0x7fff8759bdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8759c000 -     0x7fff875a0fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff876c2000 -     0x7fff876c8fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff876c9000 -     0x7fff876caff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
        0x7fff876cb000 -     0x7fff876fbfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff876fc000 -     0x7fff87763ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff87764000 -     0x7fff8776cffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8776d000 -     0x7fff87773fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff87774000 -     0x7fff8777ffff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff87780000 -     0x7fff8779aff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8779b000 -     0x7fff877bafff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff877bb000 -     0x7fff87804ff3  com.apple.HIServices (1.22 - 520.10) <1AE50B12-E273-38FA-8335-4BEF77820C70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87805000 -     0x7fff8834cfff  com.apple.AppKit (6.9 - 1344.36) <D94A7D32-A789-37EA-A85C-BEFA7DE716E6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8834d000 -     0x7fff884fdff7  com.apple.QuartzCore (1.10 - 361.15) <9B6FB2AE-3563-310C-A1D7-6AD793EE2741> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff884fe000 -     0x7fff88563ff7  com.apple.ids (10.0 - 1000) <BAF9E069-888A-30EB-B247-DC6311B53B67> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff88577000 -     0x7fff88598fff  com.apple.framework.Apple80211 (10.1 - 1010.60) <3A093B44-8348-366F-88B1-16FC152CF2C3> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff88599000 -     0x7fff885b3ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff885b4000 -     0x7fff88addff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff88ade000 -     0x7fff88ae7fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff88af7000 -     0x7fff88afefff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff88b19000 -     0x7fff88b88fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff88b89000 -     0x7fff8909cff3  com.apple.JavaScriptCore (10600 - 10600.3.10) <C15E49EE-8098-3E3F-BC3B-0DB71C2197F7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8909d000 -     0x7fff890adff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8912d000 -     0x7fff89158ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff89159000 -     0x7fff8915afff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8915b000 -     0x7fff8917efff  com.apple.Sharing (328.3.1 - 328.3.1) <E1E70676-19F4-36D9-8C0A-5C860AD6BBBF> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8917f000 -     0x7fff89188fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff89189000 -     0x7fff8918dfff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8918e000 -     0x7fff89197ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff89198000 -     0x7fff8921afff  com.apple.PerformanceAnalysis (1.0 - 1) <A18C617C-2497-3CEF-9994-FBD438221D40> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8924e000 -     0x7fff89272fef  libJPEG.dylib (1232) <638302B6-369F-3C50-BF63-F8D19C393F47> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff89273000 -     0x7fff892d2ff7  com.apple.StoreFoundation (1.0 - 1) <3C096D25-EC6D-348E-BA7D-3FC74CD22BCE> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
        0x7fff892d3000 -     0x7fff897bfff7  com.apple.MediaToolbox (1.0 - 1562.107) <3F8E1C32-69EB-3AEB-AAAC-56E2477D7003> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff897f2000 -     0x7fff898c8ff3  com.apple.DiskImagesFramework (10.10.1 - 396) <B53FAF08-BBE4-389D-A081-2D94DE27464C> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff89a79000 -     0x7fff89ab0ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <D22234AA-8B30-3010-8CF0-67516D52CC33> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89ab1000 -     0x7fff89b3dff7  libsystem_c.dylib (1044.10.1) <81E5B801-84A8-3D62-80CC-8975ACE8BE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff89b80000 -     0x7fff89babfff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff89bac000 -     0x7fff89c07fef  libTIFF.dylib (1232) <56D444B7-A37A-30BC-80B5-5E702FFAAAAB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff89c08000 -     0x7fff89c10ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff89c11000 -     0x7fff89e14ff3  com.apple.CFNetwork (720.2.3 - 720.2.3) <9F9E859F-E88C-3E45-AD2F-7250879CBA3E> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff89e15000 -     0x7fff89e31ff7  com.apple.pluginkit.framework (1.0 - 1) <FEB6FF0B-A688-37C9-93CF-E886E7ED3141> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff89e3f000 -     0x7fff89e3ffff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <9D749502-A228-3BF1-B52F-A182DEEB2C4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff89e40000 -     0x7fff89e82fff  com.apple.sociald.Social (87 - 87) <504B873A-5AFA-3EEB-A40B-0B2D75AE0810> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff89e83000 -     0x7fff89ec3ff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff89ec4000 -     0x7fff89ed2ff7  com.apple.opengl (11.1.1 - 11.1.1) <3E2DF403-A7B4-3EE7-AAF4-8EE2DED02BD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff89ed3000 -     0x7fff89ed5ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff89ee3000 -     0x7fff89eecff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89eed000 -     0x7fff89f3aff3  com.apple.CoreMediaIO (601.0 - 4749) <C0143217-57D0-32D4-BD21-7EF3A620A0C6> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff89f3b000 -     0x7fff89f3cff7  com.apple.AddressBook.ContactsData (9.0 - 1561) <36A0CB33-4E5D-3B91-B7A4-944E84329542> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff89f3d000 -     0x7fff89f78fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89f9c000 -     0x7fff8a02dff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff8a06b000 -     0x7fff8a0f9ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8a193000 -     0x7fff8a1aeff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff8a1af000 -     0x7fff8a1bafff  com.apple.AppSandbox (4.0 - 238.10.1) <4C171026-DC9A-3CEE-AB42-110859674F61> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8a1bb000 -     0x7fff8a1c2fff  libCGCMS.A.dylib (775.12) <9D570E41-99E0-32B8-A709-D2B97A905152> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8a1c3000 -     0x7fff8a1f5ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8a1f6000 -     0x7fff8a208ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff8a2a1000 -     0x7fff8a2a4fff  com.apple.xpc.ServiceManagement (1.0 - 1) <0B909D7D-44DE-3789-A0C1-B8F5DA62D343> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8a2f2000 -     0x7fff8a341ff7  com.apple.opencl (2.4.2 - 2.4.2) <D153BAF2-1E4F-3B46-BA0F-08B6D8A6DAAE> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8a342000 -     0x7fff8a345fff  libScreenReader.dylib (390.20) <E0D43BFD-08C3-347F-BE32-9FBB0674C17F> /usr/lib/libScreenReader.dylib
        0x7fff8a3a3000 -     0x7fff8a449ff7  com.apple.PDFKit (3.1 - 3.0) <0FE0673B-03DC-3805-BBE3-1DEAFE87954D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8a44a000 -     0x7fff8a465ff7  com.apple.aps.framework (4.0 - 4.0) <85C339F3-95B5-3405-AEEE-31D3FAFF31BE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8a466000 -     0x7fff8a471ff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8a472000 -     0x7fff8a4beff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff8a4bf000 -     0x7fff8a855fff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a87b000 -     0x7fff8a87ffff  libspindump.dylib (182) <085978DC-A34D-3B72-BC7B-025C35A0A373> /usr/lib/libspindump.dylib
        0x7fff8a880000 -     0x7fff8a881fff  libquit.dylib (182) <38C766A9-A921-3D88-8E39-BFBFF32EB69C> /usr/lib/libquit.dylib
        0x7fff8a882000 -     0x7fff8a88dfdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8a88e000 -     0x7fff8a88efff  com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a8c2000 -     0x7fff8a8c4ffb  libCGXType.A.dylib (775.12) <140E8719-BCEA-3937-9672-1D5ED8002104> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8a984000 -     0x7fff8a999fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff8a9c8000 -     0x7fff8aa70ff7  com.apple.PackageKit (3.0 - 436) <2EB311B0-89DC-3667-B5B6-8CE240411EC5> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff8aa71000 -     0x7fff8aac2ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8ab01000 -     0x7fff8ab2dfff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8ab2e000 -     0x7fff8ab5cff7  com.apple.CommerceKit (1.2.0 - 376.6) <E53384F3-EA67-3E3A-A008-8FE12B4721F5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff8ab5d000 -     0x7fff8ab9dff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8ab9e000 -     0x7fff8abb7ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8abb8000 -     0x7fff8abccff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8abd5000 -     0x7fff8abd6ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8abd7000 -     0x7fff8ac54fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <491EA54B-8B60-3E0E-BC42-D3B16C103A50> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8ac55000 -     0x7fff8ac58fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8ac59000 -     0x7fff8ac60ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8ac61000 -     0x7fff8ac6eff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8ac6f000 -     0x7fff8b09ffff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8b0a0000 -     0x7fff8b0a3fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8b0a4000 -     0x7fff8b0afff7  libcsfde.dylib (471.10.4) <B8ADE278-E907-3B16-9891-957EB2821922> /usr/lib/libcsfde.dylib
        0x7fff8b0b7000 -     0x7fff8b0b7fff  com.apple.WebKit2 (10600 - 10600.3.10.2) <0B0463DC-13F6-3736-A800-B8BA50F30FCB> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8b0b8000 -     0x7fff8b122ff7  com.apple.imfoundation (10.0 - 1000) <AEFC5BF5-92BD-32CD-8376-0E69C688F0E0> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8b138000 -     0x7fff8b138ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8b172000 -     0x7fff8b177ff7  libsystem_stats.dylib (163.10.15) <34D2CE32-E52B-3912-BFF6-5E667FA0A98C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8b178000 -     0x7fff8b3f2fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b3f3000 -     0x7fff8b416ff7  com.apple.idsfoundation (10.0 - 1000) <E603D03E-6EFF-375B-AC5E-1F888EDB2D49> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff8b417000 -     0x7fff8b4acff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8b4ad000 -     0x7fff8b4b5fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8b4b6000 -     0x7fff8b4d1fff  com.apple.PackageKit.PackageUIKit (3.0 - 436) <A9D85786-9323-3C2D-A6A0-83443014A750> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff8b4d2000 -     0x7fff8b74eff3  com.apple.RawCamera.bundle (6.02 - 769) <1F0F0047-682F-39E3-BE26-2467BF5F0E22> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8b7f2000 -     0x7fff8b7f4ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff8b7f5000 -     0x7fff8b808ff7  com.apple.MultitouchSupport.framework (262.25 - 262.25) <F6EFF881-7EE0-3278-9E14-B30424ACAE66> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8b809000 -     0x7fff8b80eff7  com.apple.ServerInformation (2.0 - 1) <020F4A0E-F1A2-38AE-8F2B-22200CF1FC82> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8b8a4000 -     0x7fff8b8c8ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8b8c9000 -     0x7fff8b8d5ff7  com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUt ilities
        0x7fff8b8d6000 -     0x7fff8b90efff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b928000 -     0x7fff8b92fff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8b930000 -     0x7fff8b9c2fff  com.apple.SoftwareUpdate.framework (6 - 744.3.1) <B35FA12A-0932-34E3-AF88-9CACD5E27F6F> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff8b9c3000 -     0x7fff8b9ebfff  libxpc.dylib (559.10.3) <8EAACE96-9E47-3ACE-90DA-85A020EC5ED3> /usr/lib/system/libxpc.dylib
        0x7fff8b9ec000 -     0x7fff8ba0aff7  com.apple.addressbook.vCard (9.0 - 1561) <CC336EDB-B3E3-3630-9852-802928844E7A> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff8ba0b000 -     0x7fff8ba0dfff  com.apple.EFILogin (2.0 - 2) <39895ACB-E756-342C-ABE5-DB7100EF0A69> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8ba6f000 -     0x7fff8ba6ffff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8baa1000 -     0x7fff8bb22ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8c3b3000 -     0x7fff8c51eff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c51f000 -     0x7fff8c525ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8c526000 -     0x7fff8c526fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c527000 -     0x7fff8c553fff  libsandbox.1.dylib (358.1.1) <8A93E857-FEB6-327B-BD68-62C80F8BF131> /usr/lib/libsandbox.1.dylib
        0x7fff8c554000 -     0x7fff8c5a1ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c5a2000 -     0x7fff8c5cffff  com.apple.Accounts (113 - 113) <990F0F61-6AC5-3076-932E-02A9A7F75AC4> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8c5d0000 -     0x7fff8c5d8fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8c5d9000 -     0x7fff8c5e0fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8c5e1000 -     0x7fff8c60affb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8c653000 -     0x7fff8c93affb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8c93b000 -     0x7fff8c93dfff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8c957000 -     0x7fff8c96efff  com.apple.login (3.0 - 3.0) <85DEFDD5-FC3E-3AA1-8037-12F2DCE6BE3D> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8c96f000 -     0x7fff8ca87ffb  com.apple.CoreText (352.0 - 454.2) <CB04BA1D-AC17-3B27-BE39-30536B6AA278> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8ca88000 -     0x7fff8cae0ff7  com.apple.accounts.AccountsDaemon (113 - 113) <30F83BF7-2BAE-3BAD-B111-224346AF4B52> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff8cae1000 -     0x7fff8cae6fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8cae7000 -     0x7fff8cafdff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff8cafe000 -     0x7fff8cb9cfff  com.apple.Metadata (10.7.0 - 916.2) <3FA903E9-BDA9-3FB5-8AB2-5AF54FEE65D5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8cb9d000 -     0x7fff8cc3ffff  com.apple.Bluetooth (4.3.2 - 4.3.2b15) <76B79601-5B6D-3CBF-B9B0-15AA7834FA5A> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8cc40000 -     0x7fff8cc41fff  libSystem.B.dylib (1213) <92E3919A-DDB5-339E-8B09-31C94CFAB045> /usr/lib/libSystem.B.dylib
        0x7fff8cc42000 -     0x7fff8cc5cff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8cd1a000 -     0x7fff8cd22fe7  libcldcpuengine.dylib (2.4.5) <36A2F945-345C-376C-860C-29AD805F3B77> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8cd23000 -     0x7fff8cd8affb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8cdcc000 -     0x7fff8ce26ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8ce27000 -     0x7fff8ce29fff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8ce2a000 -     0x7fff8ce35ff7  libkxld.dylib (2782.10.67) <49B226A5-2B63-3117-9CB5-1B0EEAA286B6> /usr/lib/system/libkxld.dylib
        0x7fff8ce36000 -     0x7fff8ce50fff  com.apple.AppleVPAFramework (1.2.7 - 1.2.7) <B625468E-4639-349E-BAB1-759E1A76F452> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8ce51000 -     0x7fff8d155ffb  com.apple.HIToolbox (2.1.1 - 757.2) <00D91113-EAC3-320E-8560-DB2F790DB1C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8d158000 -     0x7fff8d288fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8d289000 -     0x7fff8d2c1ffb  libsystem_network.dylib (411.1) <5354B12E-6CCE-30A9-B38F-3377BE0ACB77> /usr/lib/system/libsystem_network.dylib
        0x7fff8d2c2000 -     0x7fff8d2cafff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8d2d4000 -     0x7fff8d315fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8d316000 -     0x7fff8d316ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8d317000 -     0x7fff8d322fff  com.apple.CommerceCore (1.0 - 376.6) <77E61CC2-6454-3A61-A25E-357620386A10> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8d323000 -     0x7fff8d328ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8d329000 -     0x7fff8d37aff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <56AA4060-63DF-3DF0-AB8A-880D0DD6F075> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8d37b000 -     0x7fff8d3c8fff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8d3c9000 -     0x7fff8d3cdfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8d3ce000 -     0x7fff8d3cffff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8d3d0000 -     0x7fff8d516fef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff8d517000 -     0x7fff8d519fff  libRadiance.dylib (1232) <9C2DBBDF-0F0B-36BF-84D0-13E0086F793A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8d53a000 -     0x7fff8d548fff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
        0x7fff8d549000 -     0x7fff8d551ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8d552000 -     0x7fff8d555ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <7B56E9E3-32C9-341C-96FE-B4BD37D38659> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8d556000 -     0x7fff8d6e4fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8d6e5000 -     0x7fff8d702ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8d707000 -     0x7fff8d839ff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8d85f000 -     0x7fff8d85ffff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8d860000 -     0x7fff8d88bfff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8d899000 -     0x7fff8d89bff3  com.apple.SafariServices.framework (10600 - 10600.3.10.2) <D249C495-34F0-3239-9A33-F9BC631064B0> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff8d89c000 -     0x7fff8d8a8ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d8a9000 -     0x7fff8d8a9fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8d8aa000 -     0x7fff8d8bbfff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8d8bc000 -     0x7fff8d8c5fff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8d8c6000 -     0x7fff8d932fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8d933000 -     0x7fff8d93efff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8d93f000 -     0x7fff8d979ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d9c4000 -     0x7fff8da55ff7  libCoreStorage.dylib (471.10.4) <BFFFE6A4-E95C-35F5-9B0D-77679C0A7D17> /usr/lib/libCoreStorage.dylib
        0x7fff8da82000 -     0x7fff8ea39ff7  com.apple.WebCore (10600 - 10600.3.10.1) <74A222EC-313A-3F67-B421-EFF281C05760> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8ea3a000 -     0x7fff8eb81ff7  com.apple.WebKitLegacy (10600 - 10600.3.10.2) <8159038F-BC39-320B-8CE4-E9DC6C5C477E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy. framework/Versions/A/WebKitLegacy
        0x7fff8eb91000 -     0x7fff8ebabff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff8ebac000 -     0x7fff8ebacfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8ebad000 -     0x7fff8ebb5fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8ebd5000 -     0x7fff8ec28ffb  libAVFAudio.dylib (118.3) <B670223A-A545-31A4-AB44-31DFEE292BA7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8ec29000 -     0x7fff8ec97ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8ec9d000 -     0x7fff8eca7fff  com.apple.IntlPreferences (2.0 - 150.1) <C62C6F4F-38B9-340B-82A6-1F82AFE1D724> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8ecbc000 -     0x7fff8ef79ff7  com.apple.WebKit (10600 - 10600.3.10.2) <7EDAA5CE-FBF6-38D3-947E-C59938F2878D> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8ef7a000 -     0x7fff8efcefff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8f162000 -     0x7fff8f35c46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
        0x7fff8f454000 -     0x7fff8f458fff  com.apple.LoginUICore (3.0 - 3.0) <F51B57BA-9F69-3A51-8083-A469CE869C29> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8f4ce000 -     0x7fff8f518fff  com.apple.DiskManagement (7.1 - 847.1) <DC68FBAD-CAC1-30EA-B979-FFED401ADA21> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8f523000 -     0x7fff8f78dfff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8f78e000 -     0x7fff8f7c1ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8f7cb000 -     0x7fff8f7cffff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8f7d0000 -     0x7fff8f7faff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8f7fb000 -     0x7fff8f801ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8f819000 -     0x7fff8f819fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8f81a000 -     0x7fff8f866ff7  com.apple.corelocation (1486.17 - 1615.21.1) <81C3839C-C3AC-3A9F-9473-790F4D7E5206> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8f867000 -     0x7fff8f959fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8f95a000 -     0x7fff8f9cefff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8f9cf000 -     0x7fff8f9ddff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff8f9de000 -     0x7fff8fa03fff  libPng.dylib (1232) <10DC46CC-A4FD-3B1A-AA23-E4F12938BC13> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8fa04000 -     0x7fff8fa11fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8fa120

Maybe you are looking for

  • Confused: the difference between ExtractStruct., and table in datasource?

    Run RSA6 on R3, locate any datasource and display it, then we can see a ExtractStruct. field at the top, and many table fields at bottom.   What's the difference between the ExtractStruct. and the below table in the datasource?   All the entries are

  • De-activation after I've uninstalled the program...

    I'm trying to load the entire e-Learning suite (including flash) - crashes every time!!! The machine I'm loading it on previously had Dreamweaver and Flash CS4 - I deinstalled but didn't deactivate the software. Not sure if this is the cause, but I'v

  • Help with HTML View

    Hi, I need help building VC Logic to display 1 of 4 reports (HTTP Links) in an HTML View.  Depending on the value of a incoming data field I want to feed the HTML View a different web page link.  It looks like you can't nest the logic of an if statem

  • Can Adobe Photoshop CS6 files open in CS4

    Is it possible for me to open CS6 files to CS4 in photoshop

  • Workflow Mailer stops picking up notifications after IP address changes

    We changed the IP address of our Domain Controllers this afternoon. Soon after we did this, I noticed that notifications in the WF_NOTIFICATIONS table were not being processed. FND_SVC_COMPONENTS showed that the mailer was running, and I was able to