Safari changes my keyboard layout when on password field

Hi,
after upgrade to Safari 5, I got really strange problem.
I have two keyboard layout configured, U.S., which I use regulary, and Czech, to which I switch on rare occasions when I need to write something in my native language. I have configured keyboard shortcut Shift-Cmd-Space for switching between those layouts.
Now, the problem is that whenever I enter a password field on a web page form in Safari, it immediately switches to the Czech layout and disables the U.S. one, so I even can not switch back! The keyboard shortcut does not work and the "U.S." item in the keyboard indicator menu is grey.
This is extremely annoying. Does anyone have an idea what is causing it and how can I fix it?
Also, I think (but I'm not sure) that I have sometimes seen this before. But now (probably after Safari 5 installation) it happens on all the passwords fields I tried (even on pages I never visited before).
regards,
Bob
mid-2008 15" MacBook Pro, Snow Leopard, Safari 5, all available updates. In the Language & Text section of the preferences, I have following settings:
Language: First English, then Czech, then the rest.
Formats: Region: Custom (mostly czech with some tweaks)
Input Sources: Keyboard & Character Viewer checked, Czech-QWERTY checked, English checked. Selected "Use the same one in all documents", checked Show input menu in menu bar.

Problem solved! I have installed Keywurl some time ago (I really missed Firefox's bookmark keywords). After I upgraded to Safari 5, Keywurl said "Ooops, I'm not tested with Safari 5, disabling myself", so I did not suspected it. But out of deseperation, I tried to remove the plugin completely from the disk. And it worked! No more problems with keyboard layout in password field. Strange, but at least it works.
Bob

Similar Messages

  • Yosemite changes my keyboard layout without reason (randomly)

    Hi folks. I have a macbook pro with retina display (Late-2013) and spanish keyboard. As a matter of fact I have a Spanish-ISO keyboard layout selected by default.
    The problem is that I've recently noticed that Yosemite changes my keyboard layout to United States. When I go to input devices (in preferences) I find that a US keyboard has been added! Now I have Spanish-ISO and US as input device, but the US one is being used. So I remove the US keyboard, leaving just the Spanish one, and everything seems to work correctly again.
    The problem is that this event repeats randomly! I notice that this is happening when I need to login my session. But not everytime!
    I don't know what could be the problem!
    Any idea?

    Another way.
    Thinking that LXDE is using Openbox.
    You can use ~/.config/openbox/rc.xml
    http://openbox.org/wiki/Help:Bindings#Key_bindings
    example: using the Windows key
    <keybind key="W-u">
    <action name="Execute">
    <command>setxkbmap us<command>
    </action>
    </keybind>
    <keybind key="W-b">
    <action name="Execute">
    <command>setxkbmap bg<command>
    </action>
    </keybind>

  • Can't change the keyboard layout in Xorg

    I tried the different possibilities in the wiki to change the keyboard layout in X. setxkbmap does work, but I'd like to keep the settings across reboots. I tried the two methods in the wiki, here are my config files:
    /etc/X11/xorg.conf.d/00-keyboard.conf (created by localectl)
    # Read and parsed by systemd-localed. It's probably wise not to edit this file
    # manually too freely.
    Section "InputClass"
    Identifier "system-keyboard"
    MatchIsKeyboard "on"
    Option "XkbLayout" "de,ru"
    Option "XkbModel" "pc104"
    Option "XkbVariant" ","
    Option "XkbOptions" "grp:alt_shift_toggle"
    EndSection
    /etc/X11/xorg.conf.d/10-keyboard.conf (manually created)
    Section "InputClass"
    Identifier "system-keyboard"
    MatchIsKeyboard "on"
    Option "XkbLayout" "de,ru"
    Option "XkbModel" "pc104"
    Option "XkbVariant" ","
    Option "XkbOptions" "grp:alt_shift_toggle"
    EndSection
    But the output of "setxkbmap -print -verbose 10" shows german and us-english layout:
    Setting verbose level to 10
    locale is C
    Trying to load rules file ./rules/evdev...
    Trying to load rules file /usr/share/X11/xkb/rules/evdev...
    Success.
    Applied rules from evdev:
    rules: evdev
    model: pc104
    layout: de,us
    variant: ,
    options: grp:alt_shift_toggle
    Trying to build keymap using the following components:
    keycodes: evdev+aliases(qwertz)
    types: complete
    compat: complete
    symbols: pc+de+us:2+inet(evdev)+group(alt_shift_toggle)
    geometry: pc(pc104)
    xkb_keymap {
    xkb_keycodes { include "evdev+aliases(qwertz)" };
    xkb_types { include "complete" };
    xkb_compat { include "complete" };
    xkb_symbols { include "pc+de+us:2+inet(evdev)+group(alt_shift_toggle)"};
    xkb_geometry { include "pc(pc104)" };
    Does anybody know what I am doing wrong? I would appreciate any help.
    Thomas

    In your .xinitrc file put setxkbmap yy & (yy=country code for example de) before it executes your de/wm.

  • Changing the keyboard increment when...

    I would like to change the keyboard increment when attmpting to increase/decrease the size of an image using command-option-< and >
    Currently it jumps in the oddest incrememnt, not even a whole number. Increasing the size from 100% makes the result 105.10100501000001% Where does THAT come from?
    I'd like to be able to change it, to, say, 5% increments or 2% increments. Any guesses?

    @Peter – I did not test with InDesign CS6, just CS5.5. I just doubleclicked in the Scripts Panel.
    And my preferences were set to:
    Scaling: Apply to Contents
    Maybe this is just a CS5.5 issue. Had no time for further testing…
    @Jongware –  finished one script, but did not test much.
    The one that just scales frames + contents in increments of 1%, if contents is a graphic.
    See for yourself:
    //ScaleUP_by_increment_of_ONE_Percent_WITH_TRANSFORMATIONMATRIX.jsx
    //Uwe Laubender
    * @@@BUILDINFO@@@ ScaleUP_by_increment_of_ONE_Percent_WITH_TRANSFORMATIONMATRIX.jsx !Version! Mon Mar 11 2013 11:51:54 GMT+0100
    //DESCRIPTION: Step of scaling UP: 1%
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
    app.doScript(_ScaleGraphicsOfSelection, ScriptLanguage.JAVASCRIPT, [], UndoModes.ENTIRE_SCRIPT, "Scale All Graphics of Selection: UP BY 1 PERCENT");
    function _ScaleGraphicsOfSelection(){
    var percentage = 1; //You can change the amount here
    var sel = app.selection;
    if(sel.length === 0){alert("There is nothing selected! Try again…");exit(0);};
    for(var n=0;n<sel.length;n++){
        //Check, if the individual selected object is of type "Rectangle", "Oval" or "Polygon".
        //AND check, if the individual selected object has a graphic (objects without graphics should not be scaled!).
        //AND check, if the individual selected object is locked => we will not unlock the object to scale it.
        if(sel[n].constructor.name == "Rectangle"
            || sel[n].constructor.name == "Oval"
            || sel[n].constructor.name == "Polygon"
            && app.selection[n].graphics[0].isValid
            && app.selection[n].locked == false
            var currObject = sel[n];
            var currHScaleGraphic = currObject.graphics[0].horizontalScale;
            var currVScaleGraphic =currObject.graphics[0].verticalScale;
            var HFactor = ((currHScaleGraphic +percentage) / currHScaleGraphic);
            var VFactor = ((currVScaleGraphic +percentage) / currVScaleGraphic);
            var newTM = app.transformationMatrices.add({horizontalScaleFactor: HFactor, verticalScaleFactor: VFactor});
            currObject.transform(CoordinateSpaces.INNER_COORDINATES, AnchorPoint.CENTER_ANCHOR, newTM);
            //OPTIONAL:
            currObject.redefineScaling();
    }; //END function "_ScaleGraphicsOfSelection()";
    Uwe

  • Trying to change the keyboard layout on my 5800

    I simply want to change the keyboard layout to Dvorak (because that is the layout I use).  It is not one you can buy the phone with.
    I've done many hours of searching and it seems the only thing that may have done it was MagicKey which can remap keys.  However MagicKey is now UNUSABLE because it is not signed and the Symbian people do not allow you to sign it in any way (even self sign) if you are not the original developer of the app.
    Am I missing something ?  Why is Nokia's S60 platform so closed ?
    Thanks for reading this!

    hi there,
    could you provide the community with a little more information to help narrow troubleshooting? What is your operating system and what program are we printing from? Does this happen with all documents (like word and notepad or similar)?
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Is there a way to change the keyboard layout on locked screen iOS7?

    I updated my ipad from ios6 to ios7. I noticed a really ridiculous thing after i updated my IPAD. The thing is after starting my device with ios7, i tried to enter my pass on the lock screen, but no way.
    My old password consisted characters such as ¥ $# etc ...  the keyboard layout is changed in ios7 and I couldn't see the "¥" sign anymore. I tried to restore it but I do need the lock pass.
    Any ideas?

    Hi.  I guess there will always be differences in text handling between apps like InDesign and Illustrator, which are fundermentally layout apps, and Photoshop that isn't.  But I'd like to be clear about how you Photoshop set up?  For instance, I prefer to set type size to mm in Photoshop and InDesign so I can better predict text sizing in a given document.  For fine adjustment I do it by eye, so don't really care about what the units are.
    If I have missunderstood your point (sorry about the non intended pun) please explain some more.
    Incidentally, Nigel French has an excellent title on Lynda.com called 'Photoshop for Designers - Type Essentials'.  It's probably the best source I know of for handling type in Photoshop.
    http://www.lynda.com/Photoshop-CS5-tutorials/Photoshop-for-Designers-Type-Essentials/53258 -2.html

  • HT1492 Does anyone knows how to change the keyboard layout in single user mode, please ?

    Hello,
    The question is in the title.
    Thank you.

    The only way you might do it is use one of the Unix editors to edit the plist file it gets the settings from once it boots in the GUI mode.  'vi' is present in all Macs, and you might have pico, nano, emacs, or ed depending on what was installed. The keyboard layout while in single user mode itself I think is generic to where the Mac was bought and what keyboard was ordered with it, when it came from the store.  Since you posted in the 10.3 or earlier forum, chances are if this has changed, few people would know for certain.  If you have a newer Mac, say 2006 or later, you should really post in the correct forum:
    http://discussions.apple.com/docs/DOC-2463

  • How can I stop OSX from changing my keyboard layout

    I have an English system, a French AZERTY keyboard (I live in France), and I work in five languages. I have three keyboard layouts installed, including French, of course (I use French numeric).
    After a recent update, OSX suddenly started changing my input layout against my wishes. I have always set my preferences to use the same keyboard in all documents unless I manually change it - so please don't tell me about that feature, I know about it. It's not the problem.
    It seems to want to revert to the system language (English) rather than the keyboard layout I've specified. I tried changing my interface language to French, and guess what? It wanted me to have the French keyboard layout!
    If some Apple engineer decided we should automatically have the same keyboard layout as our system language - this is bad UX. Some of us touch type (and therefore are used to one keyboard layout) and need for it to stay put. Others use different layouts with different character sets (Arabic, Chinese, Hebrew, Cyrilic, etc.). Don't force me to have the "convenient" setting automatically with no override. If there is a way to get around this problem, please tell us. I've seen lots of complaints around about this phenomenon, but no solutions so far. Not from Apple, and not from anyone else, either.
    Thanks.

    Bookmark and use this;
    Download the '''[https://addons.mozilla.org/en-US/firefox/addon/searchreset/ Mozilla Search Reset]''' {web link}
    This add-on is very simple: on installation, it backs up
    and then resets your search preferences and home page
    to their default values, and then uninstalls itself. This
    affects the search bar, URL bar searches, and the home page.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • [Solved] Can't login with current keyboard layout and `@` in password

    Hi, I'm a new arch user. I followed archwiki to install Enlightenment17. All went fine but I have a problem to login since during setup I inserted '@' in root/regular user passwords. During setup I selected the Italian layout and all seems ok, except grafical login through entrance (from aur, but I tested also kdm, with same results): password not recognized. Before asking, is not a CAPS/NUMLOCK issue since the password works using it in console login. I discovered that I can type '@' with the following combination: SHIFT+2; in an italian keybord this should print a double quote (") but in entrance (and kdm) it correponds to '@'. After login this way, the keyboard works normally (for instance using 'su'). So the problem is limited to graphical login (entrance and kdm) during which a different keyboard layout is used.
    Did I miss some config file?
    For the sake of clarity:
    1) /etc/locale.gen has "it_IT.UTF-8 UTF-8" uncommented
    2) /etc/locale.conf contains "LANG=it_IT.UTF-8"
    3) /etc/vconsole.conf contains "KEYMAP=it"
    4)
    $ locale
    LANG=it_IT.UTF-8
    LC_CTYPE="it_IT.UTF-8"
    LC_NUMERIC="it_IT.UTF-8"
    LC_TIME="it_IT.UTF-8"
    LC_COLLATE="it_IT.UTF-8"
    LC_MONETARY="it_IT.UTF-8"
    LC_MESSAGES="it_IT.UTF-8"
    LC_PAPER="it_IT.UTF-8"
    LC_NAME="it_IT.UTF-8"
    LC_ADDRESS="it_IT.UTF-8"
    LC_TELEPHONE="it_IT.UTF-8"
    LC_MEASUREMENT="it_IT.UTF-8"
    LC_IDENTIFICATION="it_IT.UTF-8"
    LC_ALL=
    Thanks for any help.
    Last edited by bull3t (2013-03-03 14:10:15)

    cfr wrote:Have you tried specifying a variant?
    I exclude a variant problem considering that in any other condition the keyboard layout is right. The system is configured for an it KEYMAP but it is obvious that in entrance/kdm is used an 'us' map. Is this hardcoded somewhere? I also tryed to comment out any entry in /etc/locale.gen except 'it_IT.UTF-8 UTF-8': still 'us' keymap in graphical login screen.
    Probably a kind user with a non-us keyborad layout could create a dummy user with password containing '@' or '#' or any other special symbol to verify that this condition is reproducible, a first step for a bug report.
    Cheers

  • Changing English keyboard layout to German layout

    I am thinking abut buying the new MacBook Pro 15" Retina in Malaysia, therefore with an English keyboard layout. Is there any affordable and less complex possibility to change the layout afterwards to german,  besides decals etc., as I am German and will continue my university studies in Germany next year?

    What about trying to order a MacBook with finnish keyboard layout at AppleStore

  • Windows 7, can't change default keyboard layout.

    Hi!
      It's not the first windows I install but its the first time I can't change the default keyboard layout.  As usual I go in control pannel,region & language, (tab)keybard and languages, I press on change keyboard, Added the one I want ( Canadian french keyboard ) Put it on top of the list, tryed to delete the azerty keyboard I mistakly selected during the install and the option remove is greyed out.  I tryed rebooting still the same issue. I also tryed to set it as default in the administrative tabs still no result..   Is there a regkey I can modify or something?
    thanks!

    G
    o to: HKEY_CURRENT_USER\Keyboard Layout\Preload\1
    Change the data in 1 to be 00001009
    this should change your layout to the Canadian French one
    The best way to do it!
    Thank's!!

  • Lumia Black Update has changed the keyboard layout

    I updated to Lumia Black on my 920, and the keyboard layout changed - most importantly, the space bar is smaller, and the comma moved, which means all of my messages typed now,look,like,this,
    Can you revert the whole update or change the keyboard? It's enough for me to abandon the phone (that and the fact the screen appears to have been heat damaged by the wireless charger)

    This has resolved my issue! Thanks Yas..
    Nokia 5530 Xpress Music
    v11.0.054
    "How We Respond Is Who We Are..."

  • Changing my keyboard layout

    Hello,
    I am proficient in typing in the Dvorak keyboard layout.
    It took me a while to find but in OS 10.4> System Preferences> International it is there as a selectable option. Once selected I can switch back and forth from the top bar in the finder.
    However... way back when I first learned Dvorak I swapped the positions of "i" and "u" (Why would I do such a stupid thing?) I did this because it made Dvorak (as great as it is) into an even more efficient layout.
    In OS 8- OS 9 I simple went to the system file, duplicated the Dvoark keyboard layout, Renamed the duplicate "Dvorak IU" and then proceeded to swap "i" and "u" with ResEdit 2.1.3.
    But now in OS 10 I am befuddled.
    How to I create or add or edit to enable Dvorak IU
    in the international pane of the system preferences?
    Please Help, O Master

    Hi,
    and welcome to the discussions.
    The default keyboard layouts reside in /System/Library/Keyboard Layouts. Each layout is packaged inside a bundle, you may view the contents by ctrl-clicking (right click) one and using Show package contents command. I would not recommend editing default ones.
    Because OS X is a multiuser OS each user has own Library. You could create your own layout and save it inside your own library. Path is yourshortname/Library/Keyboard Layouts. That would leave the system intact in case something goes wrong.
    There are several utilities available. One of a kind is Ukekele and the SIL has lots of useful information available among the list of other utilities.
    http://scripts.sil.org/cms/scripts/page.php?siteid=nrsi&itemid=ukelele
    Juha

  • Satellite A110-180: How can I change the keyboard layout?

    hello,
    i hope i could get some help from you guys
    i reformatted my machine and installing a windows xp OS.. the placement of my keys looked like the standard keyboard..
    how can i revert it back to its own setting.. because im confused with the keys whenever i type.
    hoping for a quick reply. thank you so much!
    Message was edited by: spectrex909

    Hi
    Looks like you use a wrong keyboard layout. I thin the language settings are wrong!!!
    Maybe you have an US keyboard layout and the settings are set to UK?
    Please check this in the control panel -> regional and language options -> languages -> details.
    There you can add a second language or you can change the first one to another keyboard layout.

  • Safari still crashes after clicking into a password field

    We are having a similar problem to this post: Safari crashes after clicking into a password field for a page that is embedded within Facebook but we have version 10.9.4 OS and the lastest version of Safari - 7.0.6. It does not happen when the page is not within Facebook so it seems to be related to the fact that it is iframed in?
    Steps to reproduce:
    Go here: https://www.facebook.com/glenwoodsprings?sk=app_212077615474453&app_data=3-GLWD
    Like the page
    Click on "Login/Signup" and select "Create an account"
    When clicking into the password field, Safari crashes.
    Any ideas? Much appreciated...

    Process:         com.apple.WebKit.WebContent [79232]
    Path:            /System/Library/
    StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKi t.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.78.2)
    Build Info:      WebKit2-7537078002000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [79224]
    User ID:         501
    Date/Time:       2014-08-25 10:26:58.963 -0400
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Sleep/Wake UUID: 4D84CED1-7F31-44BA-8627-CCBB41EA6BCB
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
         __TEXT                 000000010a729000-000000010a72a000 [    4K] r-x/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCService s/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.Safari.framework          0x00000001112dd222 Safari::WK::BundleFrame::jsWrapper(Safari::WK::BundleNodeHandle const&, Safari::WK::BundleScriptWorld const&) const + 12
    1   com.apple.Safari.framework          0x00000001115396d4 -[WBSFormMetadataController getMetadataForTextField:inFrame:textFieldMetadata:formMetadata:canAutoComplete: ] + 107
    2   com.apple.Safari.framework          0x0000000111395d7f -[FormMetadataController passwordFieldFocused:inFrame:] + 63
    3   com.apple.Safari.framework          0x000000011153a001 -[WBSFormMetadataController textFieldFocused:inFrame:] + 186
    4   com.apple.Safari.framework          0x00000001112def20 Safari::WK::didFocusTextField(OpaqueWKBundlePage const*, OpaqueWKBundleNodeHandle const*, OpaqueWKBundleFrame const*, void const*) + 97
    5   com.apple.WebKit2                   0x000000010a7ac1b4 WebKit::InjectedBundlePageFormClient::didFocusTextField(WebKit::WebPage*, WebCore::HTMLInputElement*, WebKit::WebFrame*) + 72
    6   com.apple.WebCore                   0x000000010b322d6a WebCore::Document::setFocusedElement(***::PassRefPtr<WebCore::Element>, WebCore::FocusDirection) + 1754
    7   com.apple.WebCore                   0x000000010b2621b5 WebCore::FocusController::setFocusedElement(WebCore::Element*, ***::PassRefPtr<WebCore::Frame>, WebCore::FocusDirection) + 1029
    8   com.apple.WebCore                   0x000000010b25ad7a WebCore::EventHandler::dispatchMouseEvent(***::AtomicString const&, WebCore::Node*, bool, int, WebCore::PlatformMouseEvent const&, bool) + 698
    9   com.apple.WebCore                   0x000000010b261230 WebCore::EventHandler::handleMousePressEvent(WebCore::PlatformMouseEvent const&) + 1552
    10  com.apple.WebCore                   0x000000010b4d264d WebCore::EventHandler::passMousePressEventToSubframe(WebCore::MouseEventWithHit TestResults&, WebCore::Frame*) + 77
    11  com.apple.WebCore                   0x000000010b260ebd WebCore::EventHandler::handleMousePressEvent(WebCore::PlatformMouseEvent const&) + 669
    12  com.apple.WebKit2                   0x000000010a7ad278 WebKit::handleMouseEvent(WebKit::WebMouseEvent const&, WebKit::WebPage*, bool) + 207
    13  com.apple.WebKit2                   0x000000010a7ad16d WebKit::WebPage::mouseEvent(WebKit::WebMouseEvent const&) + 221
    14  com.apple.WebKit2                   0x000000010a7acf2a void CoreIPC::handleMessage<Messages::WebPage::MouseEvent, WebKit::WebPage, void (WebKit::WebPage::*)(WebKit::WebMouseEvent const&)>(CoreIPC::MessageDecoder&, WebKit::WebPage*, void (WebKit::WebPage::*)(WebKit::WebMouseEvent const&)) + 83
    15  com.apple.WebKit2                   0x000000010a77b5a8 WebKit::WebPage::didReceiveWebPageMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 1248
    16  com.apple.WebKit2                   0x000000010a76519b CoreIPC::MessageReceiverMap::dispatchMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 125
    17  com.apple.WebKit2                   0x000000010a765080 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 28
    18  com.apple.WebKit2                   0x000000010a764fe9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    19  com.apple.WebKit2                   0x000000010a764f12 CoreIPC::Connection::dispatchOneMessage() + 106
    20  com.apple.WebCore                   0x000000010afac8fe WebCore::RunLoop::performWork() + 270
    21  com.apple.WebCore                   0x000000010afac7d2 WebCore::RunLoop::performWork(void*) + 34
    22  com.apple.CoreFoundation            0x00007fff8b4d45b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    23  com.apple.CoreFoundation            0x00007fff8b4c5c62 __CFRunLoopDoSources0 + 242
    24  com.apple.CoreFoundation            0x00007fff8b4c53ef __CFRunLoopRun + 831
    25  com.apple.CoreFoundation            0x00007fff8b4c4e75 CFRunLoopRunSpecific + 309
    26  com.apple.HIToolbox                 0x00007fff8221ba0d RunCurrentEventLoopInMode + 226
    27  com.apple.HIToolbox                 0x00007fff8221b7b7 ReceiveNextEventCommon + 479
    28  com.apple.HIToolbox                 0x00007fff8221b5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    29  com.apple.AppKit                    0x00007fff857f024e _DPSNextEvent + 1434
    30  com.apple.AppKit                    0x00007fff857ef89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    31  com.apple.AppKit                    0x00007fff857e399c -[NSApplication run] + 553
    32  com.apple.AppKit                    0x00007fff857ce783 NSApplicationMain + 940
    33  com.apple.XPCService                0x00007fff8382ac0f _xpc_main + 385
    34  libxpc.dylib                        0x00007fff8dcf1bde xpc_main + 399
    35  com.apple.WebKit.WebContent         0x000000010a729ba0 0x10a729000 + 2976
    36  libdyld.dylib                       0x00007fff8be795fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib              0x00007fff82bfc662 kevent64 + 10
    1   libdispatch.dylib                   0x00007fff82e64421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                   0x00007fff82e64136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib              0x00007fff82bfbe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib             0x00007fff87fabf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib             0x00007fff87faefb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib              0x00007fff82bf7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib              0x00007fff82bf6d18 mach_msg + 64
    2   com.apple.CoreFoundation            0x00007fff8b4c5f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation            0x00007fff8b4c5539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation            0x00007fff8b4c4e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                    0x00007fff8599005e _NSEventThread + 144
    6   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    7   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    8   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 4:: WebCore: Scrolling
    0   libsystem_kernel.dylib              0x00007fff82bf7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib              0x00007fff82bf6d18 mach_msg + 64
    2   com.apple.CoreFoundation            0x00007fff8b4c5f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation            0x00007fff8b4c5539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation            0x00007fff8b4c4e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation            0x00007fff8b57a811 CFRunLoopRun + 97
    6   com.apple.WebCore                   0x000000010b0593b4 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    9   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    10  libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib              0x00007fff82bf7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib              0x00007fff82bf6d18 mach_msg + 64
    2   com.apple.CoreFoundation            0x00007fff8b4c5f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation            0x00007fff8b4c5539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation            0x00007fff8b4c4e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                0x00007fff89788967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                0x00007fff8978876b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    8   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    9   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib              0x00007fff82bfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib             0x00007fff87facc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore            0x000000010ab24106 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore            0x000000010ab23c25 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    6   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    7   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib              0x00007fff82bfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib             0x00007fff87facc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore            0x000000010ab24727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore            0x000000010ab245b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    6   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    7   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib              0x00007fff82bfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib             0x00007fff87facc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore            0x000000010ab24727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore            0x000000010ab245b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    6   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    7   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib              0x00007fff82bfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib             0x00007fff87facc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore            0x000000010ab24727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore            0x000000010ab245b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    6   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    7   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib              0x00007fff82bfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib             0x00007fff87facc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore            0x000000010ab24727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore            0x000000010ab245b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    6   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    7   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib              0x00007fff82bfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib             0x00007fff87facc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore            0x000000010ab24727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore            0x000000010ab245b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    6   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    7   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib              0x00007fff82bfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib             0x00007fff87facc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore            0x000000010ab24727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore            0x000000010ab245b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore            0x000000010ab18f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib             0x00007fff87faa899 _pthread_body + 138
    6   libsystem_pthread.dylib             0x00007fff87faa72a _pthread_start + 137
    7   libsystem_pthread.dylib             0x00007fff87faefc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib              0x00007fff82bfbe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib             0x00007fff87fabf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib             0x00007fff87faefb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
       rax: 0x00007fc4e15168a0  rbx: 0x00007fc4e3b6e640  rcx: 0x0000000000000000  rdx: 0x00007fc4e15168a0
       rdi: 0x00000001160cc750  rsi: 0x0000000000000000  rbp: 0x00007fff554d4400  rsp: 0x00007fff554d4400
        r8: 0x0000000000000007   r9: 0x00000001160cc750  r10: 0x00007fc4e3b0cb40  r11: 0x0000000111794b48
       r12: 0x00007fff554d44b8  r13: 0x0000000116cea0f0  r14: 0x00007fff554d44c0  r15: 0x0000000000000000
       rip: 0x00000001112dd222  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU:     4
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
            0x10a729000 -        0x10a729ff4  com.apple.WebKit.WebContent (9537 - 9537.78.2) <35D5BADD-F8D7-3A2C-9D2A-C5127853C02D> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCService s/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
            0x10a731000 -        0x10a731fff  WebProcessShim.dylib (7537.78.2) <503BF911-3629-3536-A013-B6183F00B19C> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcessShim.dylib
            0x10a739000 -        0x10a92affc  com.apple.WebKit2 (9537 - 9537.78.2) <353EC5AA-8F73-3B6D-9E2F-0B34C69302BF> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
            0x10ab10000 -        0x10ae87ff6  com.apple.JavaScriptCore (9537 - 9537.78.1) <B105E4F8-5964-39A6-A09C-3897339EEE6E> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
            0x10af81000 -        0x10bdd5ff7  com.apple.WebCore (9537 - 9537.78.1) <C3CDA458-0ADC-3D71-887C-1E093211D177> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
            0x10f0bf000 -        0x10f353ff7  com.apple.RawCamera.bundle (5.06 - 751) <A8B1EEDB-FDCB-3EDC-9728-E3FAA644A499> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
            0x10f668000 -        0x10f79eff5  com.apple.WebKit (9537 - 9537.78.2) <AE0AAF97-AA56-3817-AA30-A0B7A766F0B9> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
            0x10f892000 -        0x10f89aff3  libCGCMS.A.dylib (599.25.10.1) <9A4FAAD7-1C16-33F8-A615-1DCAB0546E31> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
            0x1111f6000 -        0x1116fcfff  com.apple.Safari.framework (9537 - 9537.78.2) <364A0CA6-18C3-3449-875B-40F0F054F5EB> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
            0x11245c000 -        0x112484ffb  libRIP.A.dylib (599.25.10.1) <623091DF-5769-3326-90EB-44EFC8087660> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
            0x113105000 -        0x113110fff  libGPUSupport.dylib (9.6.1) <23B64473-59E7-3AC2-B8C0-CFCFDDF3F8A3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
            0x113950000 -        0x113951ff0  ATSHI.dylib (363.3) <236B636F-A8E9-37A9-BEF0-7FE68BC58436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
            0x1139ae000 -        0x1139c0ff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <08645915-BB99-3E8D-B5DE-1BF467029527> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
            0x114662000 -        0x114665ffa  libCGXType.A.dylib (599.25.10.1) <9E609F91-BD17-3C51-A877-C80E7183A867> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
            0x115992000 -        0x115996ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
         0x123400000000 -     0x12340034dff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.24.15 - 8.2.4) <1D246FBA-B34D-3B45-BDBE-F7CC6B6DEF2D> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
         0x123480000000 -     0x12348028bff7  com.apple.AMDRadeonX3000GLDriver (1.24.35 - 1.2.4) <61EB5652-7BFF-33EC-A97A-D8B3D3D42243> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
         0x7fff6c820000 -     0x7fff6c853817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
         0x7fff80bac000 -     0x7fff80c37fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
         0x7fff80c38000 -     0x7fff80c46fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
         0x7fff80c47000 -     0x7fff80c8eff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
         0x7fff80ed9000 -     0x7fff811c3fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
         0x7fff811c4000 -     0x7fff811ceff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
         0x7fff81a93000 -     0x7fff81ab7ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
         0x7fff81e93000 -     0x7fff81eebff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
         0x7fff81eec000 -     0x7fff81ef1fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
         0x7fff81ef2000 -     0x7fff81faaff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
         0x7fff82081000 -     0x7fff82087ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
         0x7fff82088000 -     0x7fff8208efff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
         0x7fff8208f000 -     0x7fff8208ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
         0x7fff82090000 -     0x7fff820a2fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
         0x7fff820aa000 -     0x7fff820b6ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
         0x7fff820b7000 -     0x7fff821a6fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
         0x7fff821e1000 -     0x7fff821ecfff  libGPUSupportMercury.dylib (9.6.1) <A34D5C51-28E0-398A-881D-552B47D2DD3C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
         0x7fff821ed000 -     0x7fff82497ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
         0x7fff82498000 -     0x7fff824a5fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
         0x7fff824a6000 -     0x7fff824beff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
         0x7fff82556000 -     0x7fff82557ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
         0x7fff82558000 -     0x7fff82563ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
         0x7fff82564000 -     0x7fff82564fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
         0x7fff82569000 -     0x7fff8256aff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
         0x7fff825cc000 -     0x7fff825ceff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
         0x7fff825cf000 -     0x7fff82817ff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
         0x7fff82bb6000 -     0x7fff82bbfffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
         0x7fff82be6000 -     0x7fff82c02ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
         0x7fff82e61000 -     0x7fff82e7bfff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
         0x7fff831e2000 -     0x7fff83348fff  libGLProgrammability.dylib (9.6.1) <07700B99-8542-32D7-BB96-29472EFE75EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
         0x7fff8335d000 -     0x7fff8335eff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
         0x7fff835c1000 -     0x7fff835c3ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
         0x7fff835c4000 -     0x7fff835dafff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
         0x7fff835db000 -     0x7fff835ddfff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
         0x7fff835de000 -     0x7fff835f5ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
         0x7fff83603000 -     0x7fff83610ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
         0x7fff83613000 -     0x7fff83631ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
         0x7fff83632000 -     0x7fff8363cfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
         0x7fff8363d000 -     0x7fff83675ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
         0x7fff83676000 -     0x7fff8367aff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
         0x7fff8367b000 -     0x7fff83828f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
         0x7fff83829000 -     0x7fff8382fff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
         0x7fff83830000 -     0x7fff8384bff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
         0x7fff8384c000 -     0x7fff83873ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
         0x7fff83874000 -     0x7fff83a10ff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
         0x7fff83a11000 -     0x7fff83a1bff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
         0x7fff83a1f000 -     0x7fff83a4bff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
         0x7fff83a4c000 -     0x7fff83a5bff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
         0x7fff83e5a000 -     0x7fff83f9bfff  com.apple.QTKit (7.7.3 - 2826.19) <E634E6EC-2C7A-3F86-997B-CFC5D9F89E6B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
         0x7fff83f9c000 -     0x7fff84003ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
         0x7fff84004000 -     0x7fff84085fff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
         0x7fff84086000 -     0x7fff84086ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
         0x7fff84087000 -     0x7fff8414bff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
         0x7fff8414c000 -     0x7fff84153fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
         0x7fff841ac000 -     0x7fff841edfff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
         0x7fff841ee000 -     0x7fff841f2fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
         0x7fff8425d000 -     0x7fff84531fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
         0x7fff84532000 -     0x7fff845a1ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
         0x7fff845a2000 -     0x7fff845e4ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
         0x7fff84643000 -     0x7fff846a8ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
         0x7fff84735000 -     0x7fff847c5ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
         0x7fff84cd4000 -     0x7fff84cd6fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
         0x7fff84cd7000 -     0x7fff84cf2ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
         0x7fff84d9d000 -     0x7fff85174fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
         0x7fff85175000 -     0x7fff8519fff7  libsandbox.1.dylib (278.11.1) <D98EE9E5-BEB9-3396-924B-9CD100E81C41> /usr/lib/libsandbox.1.dylib
         0x7fff851a0000 -     0x7fff851edfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
         0x7fff851ee000 -     0x7fff855cfffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
         0x7fff855d0000 -     0x7fff855f8ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
         0x7fff85613000 -     0x7fff857cbffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
         0x7fff857cc000 -     0x7fff86342ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
         0x7fff86d1d000 -     0x7fff86d56ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
         0x7fff86d57000 -     0x7fff86daafff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
         0x7fff86dab000 -     0x7fff86db3fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
         0x7fff86db4000 -     0x7fff86dbcff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
         0x7fff86dbd000 -     0x7fff86dcfff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
         0x7fff86dd0000 -     0x7fff86f3eff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
         0x7fff86f5e000 -     0x7fff87028fff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
         0x7fff87114000 -     0x7fff87547ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
         0x7fff87548000 -     0x7fff8754cfff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
         0x7fff8754d000 -     0x7fff87577ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
         0x7fff875e1000 -     0x7fff875e3fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
         0x7fff875e4000 -     0x7fff87713fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
         0x7fff87714000 -     0x7fff87716fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
         0x7fff877dd000 -     0x7fff87b13fff  com.apple.MediaToolbox (1.0 - 1273.54) <CB6F6690-D44C-30B5-93AB-CAB198D51884> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
         0x7fff87b14000 -     0x7fff87b43fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
         0x7fff87b44000 -     0x7fff87b73ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
         0x7fff87b74000 -     0x7fff87b7bfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
         0x7fff87b7c000 -     0x7fff87b87fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
         0x7fff87b8a000 -     0x7fff87c78fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
         0x7fff87cc9000 -     0x7fff87cc9fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
         0x7fff87cca000 -     0x7fff87cd4ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
         0x7fff87ef5000 -     0x7fff87f0eff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
         0x7fff87f0f000 -     0x7fff87f61fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
         0x7fff87fa9000 -     0x7fff87fb0ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
         0x7fff87fb1000 -     0x7fff87fcaff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
         0x7fff87fcb000 -     0x7fff88225ff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
         0x7fff88235000 -     0x7fff88235ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
         0x7fff88256000 -     0x7fff8825ffff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
         0x7fff88273000 -     0x7fff88273fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
         0x7fff8827a000 -     0x7fff8827afff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
         0x7fff88292000 -     0x7fff8837cfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
         0x7fff8837d000 -     0x7fff884edff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
         0x7fff88541000 -     0x7fff885b8fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
         0x7fff885b9000 -     0x7fff885eeffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
         0x7fff885ef000 -     0x7fff8864affb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
         0x7fff88654000 -     0x7fff886a2fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
         0x7fff886a3000 -     0x7fff886d7fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
         0x7fff886fb000 -     0x7fff8872cfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
         0x7fff8872d000 -     0x7fff8874aff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
         0x7fff8874b000 -     0x7fff88777fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
         0x7fff888f4000 -     0x7fff88952ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
         0x7fff88953000 -     0x7fff8897affb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
         0x7fff8897b000 -     0x7fff88983ffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
         0x7fff889e6000 -     0x7fff88a49ffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
         0x7fff88a4a000 -     0x7fff88a4afff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
         0x7fff88a4b000 -     0x7fff88a5bfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
         0x7fff88d32000 -     0x7fff88e62ff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
         0x7fff890f3000 -     0x7fff8912efff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
         0x7fff8915a000 -     0x7fff8922bff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D85430A6-1410-3B5F-9D11-17E2440B786E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
         0x7fff8926d000 -     0x7fff89271ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
         0x7fff89272000 -     0x7fff892dffff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
         0x7fff892e0000 -     0x7fff8930eff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
         0x7fff8940c000 -     0x7fff89414fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
         0x7fff89415000 -     0x7fff8941aff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
         0x7fff896db000 -     0x7fff896ebffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
         0x7fff896ec000 -     0x7fff896eeff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
         0x7fff896ef000 -     0x7fff89714ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
         0x7fff89722000 -     0x7fff89a20fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
         0x7fff89a21000 -     0x7fff89aadff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
         0x7fff89ab4000 -     0x7fff89ad0fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
         0x7fff89ad1000 -     0x7fff89ad2fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
         0x7fff89b22000 -     0x7fff89c13ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
         0x7fff89d14000 -     0x7fff89d15ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
         0x7fff89d16000 -     0x7fff89d1aff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
         0x7fff89d1b000 -     0x7fff89fecff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
         0x7fff8a0bf000 -     0x7fff8a0c0fff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
         0x7fff8a0c1000 -     0x7fff8a134fff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
         0x7fff8afc8000 -     0x7fff8aff9ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
         0x7fff8affa000 -     0x7fff8b039fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
         0x7fff8b056000 -     0x7fff8b057fff  libquit.dylib (161.2) <7B9C07B6-8993-32C8-89C2-23D2E7FA85BA> /usr/lib/libquit.dylib
         0x7fff8b097000 -     0x7fff8b0a4ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
         0x7fff8b111000 -     0x7fff8b13aff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
         0x7fff8b176000 -     0x7fff8b18dff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
         0x7fff8b18e000 -     0x7fff8b196ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
         0x7fff8b197000 -     0x7fff8b1a3ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
         0x7fff8b1c1000 -     0x7fff8b1f0ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
         0x7fff8b270000 -     0x7fff8b2b5ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
         0x7fff8b2ca000 -     0x7fff8b2e2ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
         0x7fff8b2e3000 -     0x7fff8b2e7ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
         0x7fff8b2e8000 -     0x7fff8b318fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
         0x7fff8b319000 -     0x7fff8b31efff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
         0x7fff8b31f000 -     0x7fff8b322ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
         0x7fff8b323000 -     0x7fff8b326fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
         0x7fff8b375000 -     0x7fff8b454fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
         0x7fff8b455000 -     0x7fff8b63afff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
         0x7fff8b63b000 -     0x7fff8b6c4ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
         0x7fff8b6c5000 -     0x7fff8b6cfff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
         0x7fff8b6d0000 -     0x7fff8b73cfff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
         0x7fff8b73d000 -     0x7fff8b740ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
         0x7fff8b7b6000 -     0x7fff8b7b7fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
         0x7fff8b7b8000 -     0x7fff8b7bbfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
         0x7fff8b7bc000 -     0x7fff8b808ffe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
         0x7fff8b809000 -     0x7fff8b892fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
         0x7fff8b893000 -     0x7fff8b8e0ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
         0x7fff8b8e1000 -     0x7fff8b8ecfff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
         0x7fff8b8ed000 -     0x7fff8b9d1fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
         0x7fff8b9d2000 -     0x7fff8b9d2ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
         0x7fff8b9d3000 -     0x7fff8b9d7fff  com.apple.IOAccelerator (98.22 - 98.22) <AB1F2662-330B-3D88-8E30-A8343203CD38> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
         0x7fff8ba06000 -     0x7fff8bab6ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
         0x7fff8badb000 -     0x7fff8baf6ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
         0x7fff8baf7000 -     0x7fff8bafafff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
         0x7fff8bafb000 -     0x7fff8bb24fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
         0x7fff8bca5000 -     0x7fff8bcafff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
         0x7fff8bcee000 -     0x7fff8be10fff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
         0x7fff8be11000 -     0x7fff8be75fff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
         0x7fff8be76000 -     0x7fff8be79ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
         0x7fff8be7a000 -     0x7fff8bf15ff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
         0x7fff8bf16000 -     0x7fff8bfe1fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
         0x7fff8c37b000 -     0x7fff8c37dfff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
         0x7fff8c37e000 -     0x7fff8c385ffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
         0x7fff8c3cc000 -     0x7fff8c3dfff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
         0x7fff8c40d000 -     0x7fff8cd2d32b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
         0x7fff8cd48000 -     0x7fff8cd8dfff  libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
         0x7fff8cd8e000 -     0x7fff8cd93ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
         0x7fff8cd94000 -     0x7fff8cd9bff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
         0x7fff8cd9c000 -     0x7fff8cdf5fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
         0x7fff8cdf6000 -     0x7fff8ce01ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
         0x7fff8ce02000 -     0x7fff8cf56ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
         0x7fff8cfe2000 -     0x7fff8cff3ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
         0x7fff8d044000 -     0x7fff8d045ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
         0x7fff8d050000 -     0x7fff8d137ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
         0x7fff8d138000 -     0x7fff8d17ffff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
         0x7fff8d236000 -     0x7fff8d243ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
         0x7fff8d244000 -     0x7fff8d269ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
         0x7fff8d26f000 -     0x7fff8d2adff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
         0x7fff8d2d5000 -     0x7fff8d2e6ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
         0x7fff8d2e8000 -     0x7fff8d34efff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
         0x7fff8d34f000 -     0x7fff8d378fff  GLRendererFloat (9.6.1) <23A2C705-F932-335D-B27B-565A30333460> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
         0x7fff8d466000 -     0x7fff8d8b4fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
         0x7fff8d94a000 -     0x7fff8d993fff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
         0x7fff8d994000 -     0x7fff8d9e2ff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
         0x7fff8d9e3000 -     0x7fff8d9e4fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
         0x7fff8d9e5000 -     0x7fff8db85ff7  GLEngine (9.6.1) <28300FBD-E3B2-35D2-BB54-77DCE62FC371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
         0x7fff8db86000 -     0x7fff8dc0eff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
         0x7fff8dc0f000 -     0x7fff8dc18ff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
         0x7fff8dc19000 -     0x7fff8dcdbff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
         0x7fff8dcdc000 -     0x7fff8dcddff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
         0x7fff8dcde000 -     0x7fff8dd02fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
         0x7fff8dd03000 -     0x7fff8dd32fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
         0x7fff8de07000 -     0x7fff8de29fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
         0x7fff8de2a000 -     0x7fff8de33ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
         0x7fff8de41000 -     0x7fff8de43ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
         0x7fff8de83000 -     0x7fff8df89ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
         0x7fff8e5dd000 -     0x7fff8e62eff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1)

Maybe you are looking for