[SOLVED] When archiso build.sh script, the mount for airootfs.img fail

Solved, you can see the details down in this post https://bbs.archlinux.org/viewtopic.php … 6#p1481476. Basically I rebooted.
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
As the subject states, when running ./build.sh there is a mount: work/mnt/airootfs: mount failed: Unknown error -1
looking through the script I think the command that is being ran is
mount /home/pingbuild/archlive/baseline/work/airootfs.img /home/pingbuild/archlive/baseline/work/mnt/airootfs
The mnt/airootfs directory does exist. I guess normally the directory is removed, but I am assuming the scripts stop with the error. Anyway if I run the command by hand I get the same error.
Is the airootfs.img not being created correctly?
Here is a snapshot of the std out. I could not get std err to go to curl/spurgen, so the actual error did not upload. I will paste by hand so you can see where it would have been.
[mkarchiso] INFO: Configuration settings
[mkarchiso] INFO: Command: prepare
[mkarchiso] INFO: Architecture: x86_64
[mkarchiso] INFO: Working directory: work
[mkarchiso] INFO: Installation directory: arch
[mkarchiso] INFO: Cleaning up what we can on airootfs...
[mkarchiso] INFO: Done!
[mkarchiso] INFO: Creating ext4 image of 32GiB...
Discarding device blocks: 4096/8388608 done
Creating filesystem with 8388608 4k blocks and 2097152 inodes
Filesystem UUID: df2e27ca-bdaf-4923-9568-f066c3f57b6c
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624
Allocating group tables: 0/256 done
Writing inode tables: 0/256 done
Writing superblocks and filesystem accounting information: 0/256 done
[mkarchiso] INFO: Done!
[mkarchiso] INFO: Mounting 'work/airootfs.img' on 'work/mnt/airootfs'
mount: work/mnt/airootfs: mount failed: Unknown error -1
[mkarchiso] INFO: Unmounting 'work/mnt/airootfs'
umount: work/mnt/airootfs: not mounted
Last edited by penright14 (2014-12-04 13:49:27)

djgera wrote:See https://bbs.archlinux.org/viewtopic.php?id=190477
Thanks, after looking at the post, I did not see that in the wiki.
My systemd is 217-8
I may have misunderstood what the post was accomplishing, but I run 'modprobe loop', then tried my mount same error. If I may ask a dumb question, once 'modprobe loop' has ran without any errors shown, will the loop be added until the next boot?
Here is my lsmod
Module Size Used by
mousedev 17272 0
ppdev 16782 0
coretemp 12820 0
hwmon 12930 1 coretemp
vmw_balloon 12658 0
crc32c_intel 21809 0
evdev 21544 1
mac_hid 12633 0
psmouse 107214 0
serio_raw 12849 0
pcspkr 12595 0
e1000 130280 0
battery 17452 0
vmwgfx 174313 1
ttm 73743 1 vmwgfx
drm_kms_helper 80934 1 vmwgfx
drm 259106 4 ttm,drm_kms_helper,vmwgfx
i2c_piix4 20857 0
i2c_core 50152 3 drm,i2c_piix4,drm_kms_helper
parport_pc 26351 0
parport 35749 2 ppdev,parport_pc
irda 113859 0
crc_ccitt 12347 1 irda
vmw_vmci 55463 0
intel_agp 17432 1
intel_gtt 17848 1 intel_agp
shpchp 35210 0
processor 27777 0
ac 12715 0
button 12953 0
sch_fq_codel 17343 2
ext4 501833 2
crc16 12343 1 ext4
mbcache 17171 1 ext4
jbd2 86417 1 ext4
sr_mod 21903 0
cdrom 47479 1 sr_mod
ata_generic 12490 0
pata_acpi 12771 0
sd_mod 44398 3
crc_t10dif 12431 1 sd_mod
crct10dif_common 12356 1 crc_t10dif
ata_piix 33592 0
mptspi 21940 2
scsi_transport_spi 27754 1 mptspi
mptscsih 26657 1 mptspi
mptbase 72945 2 mptspi,mptscsih
libata 181518 3 pata_acpi,ata_generic,ata_piix
scsi_mod 147543 6 scsi_transport_spi,libata,mptspi,sd_mod,sr_mod,mptscsih
atkbd 22254 0
libps2 12739 2 atkbd,psmouse
floppy 69118 0
i8042 18002 1 libps2
serio 18282 6 serio_raw,atkbd,i8042,psmouse
Also
djgera wrote:
Please check if loop kernel module is loaded. Also, check for any related kernel log messages.
truncate -s 1M coco.img
mkfs.vfat coco.img
mount coco.img /mnt
does this works?
Gives me the same results. Also I tried overwriting the vfat with etx4, same thing. This confused me. I know I have made rootfs before.
Let me step out and set the stage a bit.
This is a question I posted on stackoverflow http://stackoverflow.com/questions/2693 … re-adj-lib One suggestion was archiso. So I started with baseline and was trying to build my 'hello world' iso. Once that is done I will then try port the P.I.N.G scripts to that ISO. Maybe event create it as a package that archiso will then just merged in. Once I get to that point building new iso should be a breeze. Actually, I use the tool as a pxe boot, but until I get the 'hello world' iso working, I can't trust the boot. So I have a script I wrote to build my rootfs once I get the process working and I know it ran once. So I rebooted and all is good.
FYI here is my script.
#!/bin/bash
PINGHOME="/home/Ping"
AIROOTFS="/home/pingbuild/archlive/baseline/work/airootfs"
PINGROOTFS="${PINGHOME}/rootfs"
if [ "$1" == "init" ]
then
rm -r ${PINGROOTFS}
cp -av "${AIROOTFS}/" "${PINGROOTFS}/"
fi
rm -r ${PINGROOTFS}/Braums
cp -av ${PINGHOME}/Braums/ ${PINGROOTFS}/Braums/
dd if=/dev/zero of=initrd bs=1M count=60
mkfs -t ext4 -F initrd
mount -o loop initrd /mnt/PingFS
#rsync -rpltDzv --delete --progress ${PINGROOTFS}/ /mnt/PingFS/
umount /mnt/PingFS
Stepping back in..... When I ran my script I was getting the same errors. Ok, this can't be so I rebooted, ran my script, and it worked. I ran the lsmod and the loop was there.
So tried './build.sh' and it is coping work/airootfs/ to work/mnt/airrootfs.
Not sure why or how it got there since my system is rather new (mid nov 2014) but after a reboot, it does look like systemd 217-8 will insert the loop without forcing a modprobe. That is probably why I did not see it in the wiki.
So back to draining the swamp. If the ISO works and I sure it will then I am back to trying to get pxe boot to work, then integrating the P.I.N.G scripts into the new rootfs. But that maybe another post. :-)

Similar Messages

  • Scripts for changing the address of the user when they have been in the box for 6 months

    Scripts for changing the address of the user when they have been in the box for 6 months
    If users are in a folder for deactivated users and disabled users in Active Directory, and been there for 6 moths do: change email address in exchange to existing email address.old 
    Anyone have suggestions on how I can go about it?

    What is this "box"?  What is this "folder" you're asking about?  You'll likely get a better answer if you use standard terminology.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • [svn:fx-trunk] 10545: Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts

    Revision: 10545
    Author:   [email protected]
    Date:     2009-09-23 13:33:21 -0700 (Wed, 23 Sep 2009)
    Log Message:
    Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts
    QE Notes: 2 Mustella tests fail:
    components/DataGrid/DataGrid_HaloSkin/Properties/datagrid_properties_columns_halo datagrid_properties_columns_increase0to1_halo
    components/DataGrid/DataGrid_SparkSkin/Properties/datagrid_properties_columns datagrid_properties_columns_increase0to1
    These fixes get us to measure the embedded fonts correctly when going from 0 columns to a set of columns so rowHeight will be different (and better) in those scenarios
    Doc Notes: None
    Bugs: SDK-15241
    Reviewer: Darrell
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/browser/DataGrid
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15241
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridBase .as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as

    Hi Matthias,
    Sorry, if this reply seems like a products plug (which it is), but this is really how we solve this software engineering challenge at JKI...
    At JKI, we create VI Packages (which are basically installers for LabVIEW instrument drivers and toolkits) of our reusable code (using the package building capabilities of VIPM Professional).  We keep a VI Package Configuration file (that includes a copy of the actual packages) in each of our project folders (and check it into source code control just as we do for all our project files).  We also use VIPM Enterprise to distribute new VI Packages over the network.
    Also, as others have mentioned, we use the JKI TortoiseSVN Tool to make it easy to use TortoiseSVN directly from LabVIEW.
    Please feel free to contact JKI if you have any specific questions about these products.
    Thanks,
    -Jim 

  • Calendar/iCloud chrashes on OSX when i try to klick the checkbox for share/use "calendar" in icloud. What can i do to fix it? In the same time, when i open iTunes window tells me that com.apple.MediaLibraryService was closed unexpected. Is there a correl.

    Hello,
    Calendar/iCloud chrashes on OSX when i try to klick the checkbox for share/use "calendar" in icloud.
    What can i do to fix it?
    In the same time / parallel, when i open iTunes, a window tells me that: "com.apple.MediaLibraryService was closed unexpected". Is there a correlation?
    The whole Problems begann Days ago, when i stupidly "played" at the rights and permissions for another "user". After a TM-Backup the Problems where there. It seems so that a few of my Picturefolders also weren´t recovered...
    Kind regards to all of you!
    Here ist the analysis - i cant do anything with it becuse i dont know much about it/that:
    Sampling process 1840 for 3 seconds with 1 millisecond of run time between samples
    Sampling completed, processing symbols...
    Analysis of sampling com.apple.preferences.icloud.remoteservice (pid 1840) every 1 millisecond
    Process:         com.apple.preferences.icloud.remoteservice [1840]
    Path:            /System/Library/PreferencePanes/iCloudPref.prefPane/Contents/XPCServices/com.ap ple.preferences.icloud.remoteservice.xpc/Contents/MacOS/com.apple.preferences.ic loud.remoteservice
    Load Address:    0x1023a7000
    Identifier:      com.apple.preferences.icloud.remoteservice
    Version:         316 (329)
    Build Info:      iCloudPrefPane-329000000000000~1
    Code Type:       X86-64
    Parent Process:  ??? [1]
    Date/Time:       2014-03-19 01:37:03.375 +0100
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  7
    Call graph:
        2826 Thread_302243   DispatchQueue_1: com.apple.main-thread  (serial)
        + 2826 start  (in libdyld.dylib) + 1  [0x7fff8e4f65fd]
        +   2826 main  (in com.apple.preferences.icloud.remoteservice) + 37  [0x1023a7d27]
        +     2826 PreferencePaneMain  (in PreferencePanes) + 171  [0x7fff935ff756]
        +       2826 NSViewServiceApplicationMain  (in ViewBridge) + 2717  [0x7fff95b07cf8]
        +         2826 -[NSXPCSharedListener resume]  (in ViewBridge) + 52  [0x7fff95b39c9a]
        +           2826 xpc_main  (in libxpc.dylib) + 399  [0x7fff8e4dcbde]
        +             2826 _xpc_main  (in XPCService) + 385  [0x7fff95e29c0f]
        +               2826 NSApplicationMain  (in AppKit) + 940  [0x7fff93904913]
        +                 2826 -[NSApplication run]  (in AppKit) + 646  [0x7fff93919b89]
        +                   2826 -[NSViewServiceApplication sendEvent:withForwarding:]  (in ViewBridge) + 33  [0x7fff95b052b2]
        +                     2826 -[NSViewServiceApplication sendEventWithoutCatch:withForwarding:]  (in ViewBridge) + 1350  [0x7fff95b050aa]
        +                       2826 -[NSApplication sendEvent:]  (in AppKit) + 2021  [0x7fff93ac96e4]
        +                         2826 -[NSWindow sendEvent:]  (in AppKit) + 11296  [0x7fff93b2ab48]
        +                           2826 -[NSControl mouseDown:]  (in AppKit) + 706  [0x7fff93ba91ad]
        +                             2826 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:]  (in AppKit) + 487  [0x7fff93ba9a97]
        +                               2826 -[NSCell trackMouse:inRect:ofView:untilMouseUp:]  (in AppKit) + 2316  [0x7fff93baa6c5]
        +                                 2826 -[NSCell _sendActionFrom:]  (in AppKit) + 128  [0x7fff93b90ced]
        +                                   2826 -[NSControl sendAction:to:]  (in AppKit) + 86  [0x7fff93b441be]
        +                                     2826 -[NSApplication sendAction:to:from:]  (in AppKit) + 327  [0x7fff93b44340]
        +                                       2826 ???  (in iCloud)  load address 0x102b7a000 + 0xd479  [0x102b87479]
        +                                         2826 -[MMCalendarsService setEnabled:creating:withWindow:]  (in AOSUI) + 95  [0x105445642]
        +                                           2826 -[MMCalendarsService hasDataToMerge]  (in AOSUI) + 17  [0x105445a14]
        +                                             2826 -[MMCalendarsService _calendarHasLocalCalendars]  (in AOSUI) + 32  [0x105445a39]
        +                                               2826 -[MMService valueForProperty:]  (in AOSUI) + 64  [0x10543c603]
        +                                                 2826 MMServiceCopyProperty  (in AOSAccounts) + 114  [0x7fff8d82c422]
        +                                                   2826 CalendarProvider::GetProperty(__CFString const*, void const**)  (in AOSAccounts) + 149  [0x7fff8d82531b]
        +                                                     2826 ???  (in Calendar)  load address 0x102bd2000 + 0x8100  [0x102bda100]
        +                                                       2826 +[CalCalendarStore defaultCalendarStore]  (in CalendarStore) + 182  [0x7fff93609749]
        +                                                         2826 +[CalPersistence defaultCalendarPersistence]  (in CalendarPersistence) + 29  [0x7fff8ee143dd]
        +                                                           2826 _dispatch_group_wait_slow  (in libdispatch.dylib) + 208  [0x7fff97041ddd]
        +                                                             2826 semaphore_wait_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a56]
        2826 Thread_302251   DispatchQueue_216: ConnectToDatabaseQueue  (concurrent)
        + 2826 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x7fff90467fb9]
        +   2826 _pthread_wqthread  (in libsystem_pthread.dylib) + 314  [0x7fff90464ef8]
        +     2826 _dispatch_worker_thread2  (in libdispatch.dylib) + 40  [0x7fff9703e193]
        +       2826 _dispatch_root_queue_drain  (in libdispatch.dylib) + 326  [0x7fff9703d09e]
        +         2826 _dispatch_client_callout  (in libdispatch.dylib) + 8  [0x7fff9703b2ad]
        +           2826 _dispatch_async_redirect_invoke  (in libdispatch.dylib) + 154  [0x7fff9703f7ff]
        +             2826 _dispatch_client_callout  (in libdispatch.dylib) + 8  [0x7fff9703b2ad]
        +               2826 _dispatch_call_block_and_release  (in libdispatch.dylib) + 12  [0x7fff9703e1d7]
        +                 2826 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326  (in CalendarPersistence) + 125  [0x7fff8ef4c4c0]
        +                   2826 +[CalPersistence _startCoreDataXPCServer:]  (in CalendarPersistence) + 339  [0x7fff8ef4bbcb]
        +                     2826 _dispatch_semaphore_wait_slow  (in libdispatch.dylib) + 206  [0x7fff9703fa15]
        +                       2826 semaphore_wait_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a56]
        2826 Thread_302252   DispatchQueue_2: com.apple.libdispatch-manager  (serial)
        + 2826 _dispatch_mgr_thread  (in libdispatch.dylib) + 52  [0x7fff9703d152]
        +   2826 _dispatch_mgr_invoke  (in libdispatch.dylib) + 239  [0x7fff9703d43d]
        +     2826 kevent64  (in libsystem_kernel.dylib) + 10  [0x7fff90215662]
        2826 Thread_302466
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 _NSEventThread  (in AppKit) + 144  [0x7fff93ac616e]
        +         2826 CFRunLoopRunSpecific  (in CoreFoundation) + 309  [0x7fff965130b5]
        +           2826 __CFRunLoopRun  (in CoreFoundation) + 1161  [0x7fff96513779]
        +             2826 __CFRunLoopServiceMachPort  (in CoreFoundation) + 181  [0x7fff96514155]
        +               2826 mach_msg  (in libsystem_kernel.dylib) + 64  [0x7fff9020fd18]
        +                 2826 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a1a]
        2826 Thread_310827: com.apple.NSURLConnectionLoader
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 __NSThread__main__  (in Foundation) + 1318  [0x7fff926b176b]
        +         2826 +[NSURLConnection(Loader) _resourceLoadLoop:]  (in Foundation) + 348  [0x7fff926b1967]
        +           2826 CFRunLoopRunSpecific  (in CoreFoundation) + 309  [0x7fff965130b5]
        +             2826 __CFRunLoopRun  (in CoreFoundation) + 1161  [0x7fff96513779]
        +               2826 __CFRunLoopServiceMachPort  (in CoreFoundation) + 181  [0x7fff96514155]
        +                 2826 mach_msg  (in libsystem_kernel.dylib) + 64  [0x7fff9020fd18]
        +                   2826 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a1a]
        2826 Thread_310833: JavaScriptCore::BlockFree
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 ***::wtfThreadEntryPoint(void*)  (in JavaScriptCore) + 15  [0x7fff929adc5f]
        +         2826 JSC::BlockAllocator::blockFreeingThreadMain()  (in JavaScriptCore) + 261  [0x7fff929b89c5]
        +           2826 _pthread_cond_wait  (in libsystem_pthread.dylib) + 727  [0x7fff90465c3b]
        +             2826 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x7fff90214716]
        2826 Thread_310834: JavaScriptCore::Marking
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 ***::wtfThreadEntryPoint(void*)  (in JavaScriptCore) + 15  [0x7fff929adc5f]
        +         2826 JSC::GCThread::gcThreadMain()  (in JavaScriptCore) + 88  [0x7fff929b92c8]
        +           2826 JSC::GCThread::waitForNextPhase()  (in JavaScriptCore) + 119  [0x7fff929b9437]
        +             2826 _pthread_cond_wait  (in libsystem_pthread.dylib) + 727  [0x7fff90465c3b]
        +               2826 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x7fff90214716]
        2826 Thread_310861: com.apple.CFSocket.private
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 __CFSocketManager  (in CoreFoundation) + 867  [0x7fff9655fb83]
        +         2826 __select  (in libsystem_kernel.dylib) + 10  [0x7fff902149aa]
        143 Thread_324056
          143 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x7fff90467fb9]
            143 _pthread_wqthread  (in libsystem_pthread.dylib) + 330  [0x7fff90464f08]
              143 __workq_kernreturn  (in libsystem_kernel.dylib) + 10  [0x7fff90214e6a]
    Total number in stack (recursive counted multiple, when >=5):
            5       _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
            5       _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
            5       thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
    Sort by top of stack, same collapsed (when >= 5):
            __psynch_cvwait  (in libsystem_kernel.dylib)        5652
            mach_msg_trap  (in libsystem_kernel.dylib)        5652
            semaphore_wait_trap  (in libsystem_kernel.dylib)        5652
            __select  (in libsystem_kernel.dylib)        2826
            kevent64  (in libsystem_kernel.dylib)        2826
            __workq_kernreturn  (in libsystem_kernel.dylib)        143
    Binary Images:
           0x1023a7000 -        0x1023a7fff  com.apple.preferences.icloud.remoteservice (316 - 329) <5631E87F-1DB8-3446-AE32-9FA89AC68EE1> /System/Library/PreferencePanes/iCloudPref.prefPane/Contents/XPCServices/com.ap ple.preferences.icloud.remoteservice.xpc/Contents/MacOS/com.apple.preferences.ic loud.remoteservice
           0x102b65000 -        0x102b6bff7  com.apple.preferences.icloud (317 - 329) <257515A5-7D0F-351C-9346-C50AF2AF1856> /System/Library/PreferencePanes/iCloudPref.prefPane/Contents/MacOS/iCloudPref
           0x102b7a000 -        0x102b99ff7  com.apple.icloud.iaplugin (426 - 459) <DB692087-05B0-385A-9281-58C8EBEB607A> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x102bbe000 -        0x102bc8ff7  com.apple.mail.iaplugin (7.2 - 1874) <80A653D9-55FD-3214-A477-67B1340755D0> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
           0x102bd2000 -        0x102bdeff7  com.apple.calendar.iaplugin (7.0 - 1366) <C5D4A563-A116-3442-98A9-D71B17F1E211> /System/Library/InternetAccounts/Calendar.iaplugin/Contents/MacOS/Calendar
           0x102be7000 -        0x102be8fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1369) <FC0AC7FD-5351-3F6B-9D24-DD3BAA52C5ED> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x102c15000 -        0x102c1dfff  com.apple.contacts.iaplugin (8.0 - 1369) <A3DE5B6F-C9FE-3FE8-8C25-7BE98F64CA25> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x10543a000 -        0x1054c0fff  com.apple.AOSUI (1.2 - 273) <92D761D5-1ABC-3A29-9306-018570EF6005> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x105aef000 -        0x105af3ff7  com.apple.DirectoryServicesSource (8.0 - 1369) <7D4F2AE3-325D-36BA-8DA7-590CFC67AF49> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x105afa000 -        0x105b46ff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <F31B84D6-DCFA-3834-BA28-AC53FE98B03F> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x105b75000 -        0x105b80fff  com.apple.Notes.iaplugin (2.0 - 284) <BF5A1CB0-1040-3781-B19B-C7C4C864DFEC> /System/Library/InternetAccounts/Notes.iaplugin/Contents/MacOS/Notes
           0x105b89000 -        0x105b8cfff  libspindump.dylib (161.2) <B8AA261C-AACA-3924-AB0E-06E2C37E48B0> /usr/lib/libspindump.dylib
           0x105bba000 -        0x105bc6ff7  com.apple.reminders.iaplugin (7.0 - 1366) <746ABED7-9075-34FA-B938-19D19FAF06B9> /System/Library/InternetAccounts/Reminders.iaplugin/Contents/MacOS/Reminders
           0x105cf8000 -        0x105d0aff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <8DBB3836-0272-3CA9-8E3D-BD5A985830EC> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x105d5c000 -        0x105d5efff  apop.so (170.1) <97DD24EE-D5F4-34EB-B521-D7BA883D2606> /usr/lib/sasl2/apop.so
           0x105d62000 -        0x105d72ff7  dhx.so (170.1) <E4299F4A-F42C-397A-A306-58161EFD7686> /usr/lib/sasl2/dhx.so
           0x105d7e000 -        0x105d86fff  digestmd5WebDAV.so (170.1) <B11199EC-EF62-3592-AE51-38EBD1B6282F> /usr/lib/sasl2/digestmd5WebDAV.so
           0x105d8b000 -        0x105d8dfff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x105d91000 -        0x105d93fff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x105d98000 -        0x105da0ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x105da5000 -        0x105da9fff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x105dae000 -        0x105db0fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x105db4000 -        0x105db9fff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x105dbe000 -        0x105dc5fff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x105dce000 -        0x105dd0fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x105dd4000 -        0x105dd8ffd  libpps.so (170.1) <C7604F07-E966-33F7-8727-93F000CBA92F> /usr/lib/sasl2/libpps.so
           0x105ddd000 -        0x105de0fff  mschapv2.so (170.1) <C79F63BB-E66D-3552-9C4C-2D3EB14CEE01> /usr/lib/sasl2/mschapv2.so
           0x105de5000 -        0x105e0dff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x105e23000 -        0x105e25fff  pwauxprop.so (400.1) <B95FA3F5-0EE9-335E-BBC7-FDEDEB7F18F0> /usr/lib/sasl2/pwauxprop.so
           0x105e2a000 -        0x105e2cfff  shadow_auxprop.so (170.1) <E02127CB-F9C0-3E3B-ABBB-473EC0CB6DE7> /usr/lib/sasl2/shadow_auxprop.so
           0x105e31000 -        0x105e33fff  smb_nt.so (170.1) <B508FD03-CE31-3B93-91D7-440BEDAD9581> /usr/lib/sasl2/smb_nt.so
           0x105e38000 -        0x105e3afff  smb_ntlmv2.so (170.1) <938D40AF-BEB3-3F55-B409-C84E3C2886FD> /usr/lib/sasl2/smb_ntlmv2.so
        0x7fff60b39000 -     0x7fff60b6c817  dyld (239.4 - ???) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8a88f000 -     0x7fff8a890ff7  libSystem.B.dylib (1197.1.1) <5292BF21-9406-32D5-8BB3-7DD02C672FA0> /usr/lib/libSystem.B.dylib
        0x7fff8a891000 -     0x7fff8a9ffff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8aa00000 -     0x7fff8aa0bff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8aa4e000 -     0x7fff8acaffff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8acb0000 -     0x7fff8acd4ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8acd5000 -     0x7fff8ad34fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8ad35000 -     0x7fff8ad38ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8ad39000 -     0x7fff8b11affe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8b11b000 -     0x7fff8b120fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8b121000 -     0x7fff8b12bff7  libcsfde.dylib (380) <A3673EC2-5B81-3190-9BA5-F27013118EC6> /usr/lib/libcsfde.dylib
        0x7fff8b12c000 -     0x7fff8b20bfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b20c000 -     0x7fff8b3b9f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8b3ba000 -     0x7fff8b3ccfff  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
        0x7fff8b3cd000 -     0x7fff8b50efff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8b50f000 -     0x7fff8b510ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8b535000 -     0x7fff8b597ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff8b5ee000 -     0x7fff8b6a6ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8b6b4000 -     0x7fff8b705fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b706000 -     0x7fff8b712ff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8b73d000 -     0x7fff8b7dafff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8b7db000 -     0x7fff8b7e3fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8b7e4000 -     0x7fff8b831fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b83c000 -     0x7fff8bc8afff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8bc8b000 -     0x7fff8bcddfff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8bcde000 -     0x7fff8be00ff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8be01000 -     0x7fff8be0cff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8be0d000 -     0x7fff8bedeff1  com.apple.DiskImagesFramework (10.9 - 371.1) <96C40A82-D2F7-310D-879B-7D8960510878> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8bedf000 -     0x7fff8cd2dfff  com.apple.WebCore (9537 - 9537.74.11) <9683BA7C-A04B-3E33-B195-DCF1C2CABF95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8cd2e000 -     0x7fff8cd36fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8cd37000 -     0x7fff8cd39fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8cd3a000 -     0x7fff8cd3dfff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8cd84000 -     0x7fff8cd88ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8cd89000 -     0x7fff8cd89fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8cd8f000 -     0x7fff8cdbefd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8cdbf000 -     0x7fff8cdccff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8cdcd000 -     0x7fff8cdd2fff  com.apple.NetFSServer (2.0 - 1) <9B7BAA23-4D4D-30A2-8538-DFD3B1E347A6> /System/Library/PrivateFrameworks/NetFSServer.framework/Versions/A/NetFSServer
        0x7fff8cdd3000 -     0x7fff8cdebff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8cdec000 -     0x7fff8cfaafff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8cfd9000 -     0x7fff8cff1ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8cff2000 -     0x7fff8cff3fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8d101000 -     0x7fff8d125fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8d126000 -     0x7fff8d168ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8d169000 -     0x7fff8d184ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8d185000 -     0x7fff8d1e2fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8d1e3000 -     0x7fff8d1e4fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8d1e5000 -     0x7fff8d1eeff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d1f2000 -     0x7fff8d49cff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8d49d000 -     0x7fff8d4a5ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8d4a8000 -     0x7fff8d4f6fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8d4f7000 -     0x7fff8d523ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8d524000 -     0x7fff8d527ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8d528000 -     0x7fff8d568fff  com.apple.PassKit (1.0 - 1) <CE4A0FC6-6E65-38AC-BC8E-74821D713B43> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
        0x7fff8d569000 -     0x7fff8d7c2ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d7c3000 -     0x7fff8d81ffff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8d820000 -     0x7fff8d846fff  com.apple.AOSAccounts (1.2.47 - 1.2.74) <BA7AA453-31FB-304A-A40C-14B20533C31D> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8d847000 -     0x7fff8dc7affb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8dc7b000 -     0x7fff8dc83ffb  com.apple.CloudServices (1.0 - 1) <644772DA-9267-376D-AD90-749D6B692566> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff8dc84000 -     0x7fff8dcc5fff  com.apple.PerformanceAnalysis (1.47 - 47) <B5B491F2-EF86-3382-B23B-EA78AC40AF25> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8dcc6000 -     0x7fff8dd6fff7  com.apple.MailCore (7.2 - 1874) <68F605E3-F062-345C-B86F-1285B7A1F6AB> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff8dd72000 -     0x7fff8de02fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8de53000 -     0x7fff8dea6fff  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
        0x7fff8dea7000 -     0x7fff8e417fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8e418000 -     0x7fff8e4c8ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8e4c9000 -     0x7fff8e4edfff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8e4ee000 -     0x7fff8e4f2fff  com.apple.FindMyMac (2.1 - 2.1) <57D589E9-B726-3519-BE99-1B38F7737ED6> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8e4f3000 -     0x7fff8e4f6ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff8e4f7000 -     0x7fff8e4fcfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8e4fd000 -     0x7fff8e6b5ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff8e6b6000 -     0x7fff8e787fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8e788000 -     0x7fff8e78afff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8e78b000 -     0x7fff8eac1fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8eac2000 -     0x7fff8eaceff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8eacf000 -     0x7fff8ead9ff7  com.apple.CrashReporterSupport (10.9 - 538) <DD7669BA-78A6-3BEA-8410-17F556ACAA18> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8eada000 -     0x7fff8eae0ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8eae1000 -     0x7fff8eafcff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8eafd000 -     0x7fff8eb42ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8eb43000 -     0x7fff8eb9afff  com.apple.IMAP (7.2 - 1874) <9BEBD1CB-EE18-3728-84D9-092EA0AE112C> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
        0x7fff8eba8000 -     0x7fff8eba9ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8ebb8000 -     0x7fff8ebe9fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8ebea000 -     0x7fff8ed20ff6  com.apple.WebKit (9537 - 9537.74.9) <CA0C0387-8A66-34D4-8B1C-F5CDDBDA76BB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8ed21000 -     0x7fff8ed94fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8ed95000 -     0x7fff8efc5ff7  com.apple.CalendarPersistence (7.0 - 138) <A8BDC8DD-9DE2-3819-9B11-114671B6EBB8> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff8efc6000 -     0x7fff8eff5fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8eff6000 -     0x7fff8f020ff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
        0x7fff8f021000 -     0x7fff8f940af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f94b000 -     0x7fff8f94fff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff8f950000 -     0x7fff8fe73fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8fe74000 -     0x7fff900d1ffd  com.apple.RawCamera.bundle (5.03 - 731) <99C18399-B160-3C4A-AEDC-A2FD4944FCC6> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff900d2000 -     0x7fff900d2fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff900d3000 -     0x7fff900d7fff  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
        0x7fff900d8000 -     0x7fff90133ffb  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
        0x7fff90161000 -     0x7fff90172fff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff901c2000 -     0x7fff901feff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff901ff000 -     0x7fff9021bff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9021c000 -     0x7fff9021ffff  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
        0x7fff90220000 -     0x7fff90228ff7  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
        0x7fff90230000 -     0x7fff9023cff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff9023d000 -     0x7fff90262ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff902fa000 -     0x7fff902fcff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff90351000 -     0x7fff90353fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff90354000 -     0x7fff90359ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff9035a000 -     0x7fff9035eff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff9035f000 -     0x7fff90428fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90429000 -     0x7fff90431ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90432000 -     0x7fff90444ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <4A5857F9-E249-3FA6-ADBB-410606AEC8CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff9045f000 -     0x7fff90461fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff90462000 -     0x7fff90469ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff90e5c000 -     0x7fff90e60ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
        0x7fff90e61000 -     0x7fff90f67ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff90f68000 -     0x7fff90f71ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90f72000 -     0x7fff90f82ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff90f83000 -     0x7fff91071fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff9108c000 -     0x7fff9108efff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9108f000 -     0x7fff91092fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff91093000 -     0x7fff910a1fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff910a2000 -     0x7fff912b8fff  com.apple.Mail.framework (7.2 - 1874) <1E9D6A31-FF20-3102-8EB9-3FCF1E13D3EC> /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
        0x7fff912b9000 -     0x7fff912c0ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff912c1000 -     0x7fff9132bff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff913b4000 -     0x7fff913cbff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff913f7000 -     0x7fff9145aff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff9145b000 -     0x7fff914bffff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff914c0000 -     0x7fff91526fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff91527000 -     0x7fff9160eff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff9169a000 -     0x7fff916b3ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff916b4000 -     0x7fff916b4fff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff916bc000 -     0x7fff916bcffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff916bd000 -     0x7fff916f8fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff91983000 -     0x7fff919e3fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff919e4000 -     0x7fff91a1cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff91a1d000 -     0x7fff91caeff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff91e49000 -     0x7fff91e70ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff91ef9000 -     0x7fff91f0aff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff91f0b000 -     0x7fff91f31fff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff91f34000 -     0x7fff91f41fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff91f42000 -     0x7fff91fb9fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <DAF9AF17-0AC5-364C-B0BF-B1AF3FB4A07F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff91fba000 -     0x7fff91fc5fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
        0x7fff91fc6000 -     0x7fff91fc6ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff91fc7000 -     0x7fff91ff0fff  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
        0x7fff91ff1000 -     0x7fff92019ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff920b2000 -     0x7fff920b8fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff920b9000 -     0x7fff920b9fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff920ba000 -     0x7fff920c1ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff920c2000 -     0x7fff921acfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff921ad000 -     0x7fff921ebff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff921ec000 -     0x7fff924c0fc7  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
        0x7fff924c1000 -     0x7fff924cbff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff924cc000 -     0x7fff924d7fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff924d8000 -     0x7fff924f1ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff924f2000 -     0x7fff92527ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff92528000 -     0x7fff9252dff7  com.apple.EmailAddressing (7.2 - 1874) <F889E9E5-A143-38F1-91E3-61CF2344A917> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff9252e000 -     0x7fff9258cff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9258d000 -     0x7fff925d8fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff92613000 -     0x7fff92648ffb  com.apple.datadetectors (5.0 - 246.0) <1C4C33FE-F364-3DBA-A1BC-4A53E594CFD3> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff92649000 -     0x7fff9264aff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9264b000 -     0x7fff92949fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9294a000 -     0x7fff9294afff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9294b000 -     0x7fff92955fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92956000 -     0x7fff9295afff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff9295b000 -     0x7fff9295cff7  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
        0x7fff9295d000 -     0x7fff929a3fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff929a4000 -     0x7fff92d1bffa  com.apple.JavaScriptCore (9537 - 9537.74.4) <0942FE6B-3152-30FC-B92A-92A1C29C5295> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff92d1c000 -     0x7fff92d1dffc  com.apple.SafariServices.framework (9537 - 9537.74.9) <DEA8E71D-D366-3767-870D-41611614874D> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff930b7000 -     0x7fff930d5fff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff930d6000 -     0x7fff9331cfff  com.apple.AddressBook.framework (8.0 - 1369) <3D1A8D58-6A9E-366C-BDB8-ECC6F279DB24> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff9331d000 -     0x7fff93327ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff93328000 -     0x7fff93361ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff93362000 -     0x7fff93363fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff93364000 -     0x7fff93394fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff93395000 -     0x7fff933a4ff8  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
        0x7fff933a5000 -     0x7fff933d9fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff933da000 -     0x7fff93401ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff93402000 -     0x7fff9341dff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff9341e000 -     0x7fff934e2ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff934e3000 -     0x7fff934e4ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff934e5000 -     0x7fff934f9fff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff934fa000 -     0x7fff9350dff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff9350e000 -     0x7fff93530fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff93531000 -     0x7fff93578ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff93579000 -     0x7fff935b9ff7  com.apple.CalDAV (7.0 - 155.2) <B96DAB4A-7431-3FD2-971B-726A67F6E004> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff935eb000 -     0x7fff93607fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff93608000 -     0x7fff93623ff7  com.apple.CalendarStore (7.0 - 1366) <27072D7F-8281-3958-A66C-3A3F862F3458> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff937a2000 -     0x7fff937a5ff7  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
        0x7fff937a6000 -     0x7fff93831fff  libCoreStorage.dylib (380) <310E877E-0770-385F-B170-FA4623E753E1> /usr/lib/libCoreStorage.dylib
        0x7fff9384e000 -     0x7fff9385fff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff93860000 -     0x7fff93862fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff93863000 -     0x7fff93865ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff93866000 -     0x7fff93901fff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff93902000 -     0x7fff94478fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff9452f000 -     0x7fff945b7ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff9482e000 -     0x7fff9483bff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff948df000 -     0x7fff9494eff1  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
        0x7fff9494f000 -     0x7fff94a3efff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff94a49000 -     0x7fff94bb9ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff94bba000 -     0x7fff94bd7ff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff94fb4000 -     0x7fff94fd6fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff94feb000 -     0x7fff950adff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff950ae000 -     0x7fff950cafff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff950cb000 -     0x7fff950cbfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff950d6000 -     0x7fff950d6fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <6FD70177-7044-3EFE-905F-08F1D2D40ECA> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff950d7000 -     0x7fff950f6ff7  com.apple.CalendarFoundation (7.0 - 113.1) <12352B25-2DCF-38C8-9776-CCC68907CF50> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff950f7000 -     0x7fff95123fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff95124000 -     0x7fff95134fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff95135000 -     0x7fff951beff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff951bf000 -     0x7fff951c8fff  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
        0x7fff951c9000 -     0x7fff95217fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff95284000 -     0x7fff952cbfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff952cc000 -     0x7fff952d6ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff952d7000 -     0x7fff95360fff  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
        0x7fff95361000 -     0x7fff95390ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff95391000 -     0x7fff953a3fff  com.apple.addressbook.ContactsAutocomplete (8.0 - 1369) <3FE9486E-0B79-32FE-A544-9B323BF160B7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete
        0x7fff953a4000 -     0x7fff954d3fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlS

    Been looking for similar posts, surprised I haven't found more, because I'm fairly certain that there is a current problem with some parts of Apple's server network: I have 3 iCloud accounts in Mail on my Macbook, and 1 of them (annoyingly, my main one) has not been able to connect for an hour or two. And both of the others wouldn't connect for a few minutes, but are now working again.
    More suprising is that trying to log in to webmail (www.icloud.com) is giving a very unhelpful error message, suggesting the server is down. Everything else Internet is working fine for me, and haven't changed any settings, so fairly sure problem is Apple's end.
    It's possible that your iPhone is collecting your mail via a different server route that is still working; my three iCloud accounts are collecting via p02.imap.mail.me.com, p09.imap.mail.me.com and p99.imap.mail.me.com, and it's only p02 that's consistantly not working.

  • When I try to download the Itunes for windows, I have received always the same text box: Itunessetup.exe is not a win32 valid? what does it mean, please?

    When I try to download the Itunes for windows, I have received always the same text box: Itunessetup.exe is not a win32 valid? what does it mean, please? What can I do to solve it?

    In the course of your troubleshooting to date have you worked through the following document?
    iTunes: Windows reports that "iTunesSetup.exe is not a valid Win32 application"

  • When I try entering a new event in iCal on my MacBook Air, I get an error message popping up on my screen that says: The request for account "iCloud" failed.  The server responded with "502" to operation CalDAVSetPropertyQueueableOperation. Help!!??

    When I try entering a new event in iCal on my MacBook Air, I get an error message popping up on my screen that says:
    The server responded with “502”
    The request for account “iCloud” failed. 
    The server responded with “502” to operation CalDAVSetPropertyQueueableOperation.
    The request for account “iCloud” failed.
    I am then given the option of staying Online or going Offline.
    Can anyone help me?
    thanks

    Hello b.krushel,
    Thank you for using Apple Support Communities
    Any number of things could cause this issue, so I would recommend this article named iCloud: Troubleshooting iCloud Calendar found here http://support.apple.com/kb/TS3999.
    These sections in particular:
    General Troubleshooting
    Make sure there are no current issues listed on the System Status that affect iCloud Calendar. The System Status is located on the iCloud Support webpage.
    Make sure you have fully enabled iCloud Calendar for the client you are using (for more setup and troubleshooting information on iOS, OS X, Windows and iCloud.com, see the additional details below).
    Check to see if the issue you are seeing is covered in iCloud Help. To search iCloud Help, visit help.apple.com/icloud.
    Check your settings and preferences as something may not be set up correctly. For example, having incorrect date and time settings can cause issues which are easily resolved by entering the appropriate settings.
    Troubleshooting Calendar on OS X Mountain Lion (iCal on OS X Lion)Note: For instructions on setting up iCloud Calendar with Calendar or iCal on your Mac, see iCloud Setup.If you are having trouble with Calendar or iCal on a Mac and you are using iCloud Calendar, try each of these steps, testing after each to see if the issue is resolved:
    Make sure you are using OS X Lion v10.7.2 or later. Click here for help verifying the version of OS X you are using.
    Make sure your computer is online. Attempt to view www.apple.com and iCloud.com. If you can't connect to the Internet, your iCloud calendars and events will not update in iCal. Click here for more information about troubleshooting your Internet connection.
    Verify that your iCloud member name is entered into the iCloud Preference pane in System Preferences. See iCloud Setup for more information about setting up iCloud on a Mac.
    Make sure you enter and update calendar information in the iCloud section of Calendar or iCal. Only calendars and events in the iCloud section of the Calendar or iCal Calendar list will be pushed to iCloud. Both Calendar and iCal for the Mac support the display of and interaction with multiple accounts and datastores, for example, iCloud, On My Mac, Exchange, Google, and so on. This makes it easy to create or modify events or calendars in a section of  Calendar or iCal that may not be updating iCloud. Learn more about moving local calendars to iCloud.
    In some cases, you may find that you have data duplicated in both the local On My Mac and the iCloud sections of Calendar or iCal. Learn more about resolving this issue.
    You can make the iCloud calendar your default calendar for all new events. In Calendar on OS X Mountain Lion, choose Calendar > Preferences > General, or in OS X Lion, choose iCal > Preferences > Generaland under the Default Calendar heading, select one of the Calendars under the iCloud heading. Close the Preferences window to save this change.
    If recent changes simply don't appear, try forcing Calendar or iCal to refresh by selecting Refresh All from theCalendar menu.
    Make sure your account was successfully created in Calendar on your Mac (or iCal). After upgrading to iCloud Calendar, you may need to quit and reopen Calendar (or iCal). To confirm your account is configured correctly in iCal:
    Open Calendar (or iCal).
    Open Calendar (or iCal) Preferences.
    Click Accounts. You should see an account with your iCloud member name entered.
    Turn iCloud Calendars off and back on
    Quit Calendar (or iCal).
    Choose Apple () menu > System Preferences > iCloud.
    Remove the checkmark in the checkbox next to Calendars.
    Close System Preferences and wait about a minute.
    Open System Preferences and choose iCloud.
    Replace the checkmark next to Calendars.
    Close System Preferences.
    Open Calendar (or iCal) and test to see if the issue has been resolved.
    Restart your computer. This may sound simple, but it does reinitialize your network and application settings and can frequently resolve issues.
    Take care,
    Sterling

  • Hello, I am running Mac os 10.6.8. It is shutting down without warning when I walk away from the computer for about 5 minutes. It happened twice. It was not asleep, i had to turn the computer back on...Any ideas...

    Hello, I am running Mac os 10.6.8. It is shutting down without warning when I walk away from the computer for about 5 minutes. It happened twice. It was not asleep, i had to turn the computer back on...Any ideas...
    G. Mendel

    Crashes
    The next time the problem happens, note the date and time the problem occurred, then go to Applications/Utilities/Console and copy the log starting at the time of the crash. Paste the log in a reply. Please do not use a screen shot as they can be hard to read. If there are repeated runs of the same messages, please post only one run. Be selective about what you post and don’t  post huge amounts. Make sure there is no personal data visible. Information learned from Linc Davis.

  • HT201471 I have an iPad 3 model A1416 16GB.  It is about 1 1/2 years old. When I opened it today the pad for my password came up and then before I could put in my password the screen went black and now I can not get it to work at all.  What should I do?

    I have an iPad 3 model A1416 16GB.  It is about 1 1/2 years old.  When I opened it today the screen for my password came up and then before I could enter it the screen went blank. I can not get it to do anything now. It had about 24% of charge left. I plugged it into the charger and still nothing. What do I do?  How do I get it to work?

    Try the following:
    1. Reset
    Hold the Sleep and Home button down until you see the Apple logo
    2. Restore:
    http://support.apple.com/kb/HT1414
    3. Recovery:
    http://support.apple.com/kb/HT1808

  • I get a message that itunes  has stopped working. When I check out why it is because of the dep security on my computer. When I try to find the program for itunes for the .exe file i cannot find it to turn off the dep for  that file

    I get a message that itunes  has stopped working. When I check out why it is because of the dep security on my computer. When I try to find the program for itunes for the .exe file i cannot find it to turn off the dep for  that file

    I found the file but when I added it to the  list for the Data  Execution Program to ignore , I received a message that the Program.x86/itunes file must have the DEP on in order to run. Anyone else having this problem ?

  • When we try to receipt the services for a PO

    Hi,
    When user try to receipt the services for a PO, error "044 Account determination for an entry not possible" appears cannot complete the process..
    Can you please help me wht could be the error
    Thanks in Advance
    Lucky

    Hi,
    1st check valuation class of service master in t.code: AC03, it valuation class  foe service should be 3200.
    Check service PO and see the cost object and G/L account assigned.
    Also check in t.code: OKB9 and see cost object you used in service PO & all seetings details.
    Are you getting error during creation of service entry sheet or releasing of  service entry sheet !
    Generally when releasing of  service entry sheet all used to get error" RC M8 147 Account determination for entry ****not possible" and to avoid error  the G/L account for GR/IR   assigned to WRX key in OBYC t.code  chart of account  WITHOUT VALUATION CLASS.
    Also check notes: 64204 & 705460
    For more check link:
    How to make GL account field in SES to be made in display only
    Regards,
    Biju K

  • HT1926 When I try to install the update for iTunes, I keep getting the message "the application attempted to load the C runtime library incorrectly.  Contact the vendor.  I don't know if it's related, but my Microsoft Outlook is totally f*k up.  What's go

    When I try to install the update for iTunes, I keep getting the message "the application attempted to load the C runtime library incorrectly.  Contact the vendor.  I don't know if it's related, but my Microsoft Outlook is totally f*k up.  What's going on?

    Hey I finally got an older vesion of itunes to work!!! 10.7  x64 for windows 7
    After uninstalling all apple products even  quicktime
    I had to delete everything from (program files, and program  files x64, program data,)
    And all downloads from apple, and I went in to search deleted  other stuff from apple, and itunes
    But definently not my itunes library and Playlist
    Down loaded 10.7 x64 for windows 7, but checked (do not start  when done)
    Then I emptied my recycling bin and restarted my  PC
    I ran geek tech tool box same as reg cure pro, also PC Tools  registry cleaner, and CC Cleaner
    Then I emptied my recycling bin and restarted my  PC
    And wallah... It finally works, and I Love the older version  anyways.
    Easier to download and transfer  music!!!!!

  • Is there a way to place markers in a multicam clip, and then have those same markers carry over when you select part of the clip for a project (or various projects)?

    Is there a way to place markers in a multicam clip, and then have those same markers carry over when you select part of the clip for a project (or various projects)?

    Thanks. Beforehand, I was double clicking on the multicam clip and forced to make a marker on either the Cam A or B. I realize now that I can do it in the Event Browser. THANK YOU.
    Considering I may create >20 markers per clips for around 10 different interviews, I wish there was a way to bring the Event Brower to the bottom half of the FCPX windows, to resemble the screen orientation when I'm working in an actual project (one could do this in iMovie), and this way the markers could be listed to the left without having all the other event clips around it. Is that clear? Is that possible?

  • I have a new MacBook Pro, and when I try to print, the laptop says, "stopped filter failed 1 page". What can I do?

    I have a new MacBook Pro, and when I try to print, the laptop says, "stopped filter failed 1 page". What can I do?

    Okay, regarding this problem:
    I'm trying to print to an Advent AW10 printer from an Imac running Yosemite 10.10.1 and it's been driving me nuts for the last two months...
    I got on to Advent yesterday and recieved this instruction from their support team this morning and it worked and I'm now printing away merrily:
    Please follow below steps:
    In Spotlight search window type Terminal and then press Enter.
    This should bring up the terminal window/program.
    In the Terminal type:
    sudo sh -c 'echo "Sandboxing Relaxed" >> /etc/cups/cups-files.conf' then press Enter.
    It will ask for your password. Please enter system password.(You will not see password entering)
    After that type following:
    sudo launchctl stop org.cups.cupsd then press Enter.
    Try Printing.
    I don't think this is specific to Advent and is rather simply an 'opening up' of something blocking the 'printer channels' (layman's terms obviously)
    Hope this helps people out!

  • TS3999 calandar on my macpro says its off an when I try to take it online I get this message: The request for account "iCloud" failed.  The server responded with "507" to operation CalDAVAddCalendarQueueableOperation.

    My calandar on mac pro isn't online, when I try to take it online it says:
    The request for account “iCloud” failed.
    The server responded with
    “507”
    to operation CalDAVAddCalendarQueueableOperation.
    How do I fix it? It's not syncing with my phone or ipad or icloud online. Thanks

    In System Preferences>iCloud, click the account button, log off then back on.

  • [svn:fx-trunk] 8251: use 4.0.0.${build. number} as the token for the config files.

    Revision: 8251
    Author:   [email protected]
    Date:     2009-06-25 12:34:32 -0700 (Thu, 25 Jun 2009)
    Log Message:
    use 4.0.0.${build.number} as the token for the config files.
    bugs: no
    qa: yes
    checkintests: pass
    Modified Paths:
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/flex-config.xml

    I had downloaded it for test, and requested for evaluation license...
    But I haven't got license, and also I am not able to find Flash Builder Plugins from HFCD site....
    I think those plugins are removed from site....
    Please help me, if anyone have those plugins...

Maybe you are looking for