Custom variable of filename, omitting certain characters

I am interested in creating a custom variable where I can edit the document name.  For example, my document is called "Myfilename_001.indd".  I wish to omit everything except for the "001" because that is the version number of my file, and I want that to be the output.  Is this possible somehow?  Or would I need a script to help do this?  Ideally, it would be nice to do it in a way where only the last three characters of the document, sans extension, are the output (if this makes any sense)
Thanks in advance
-Tommy

Hi Tommy,
This is currently not possible via the Text Variables in InDesign.
With scripting you can do it but it won't remain live, i mean it would work for the current name of the document, but if you change the document you might need to run the script again beacuse that way you would be putting plain text in there.
WIl doing this just once solve your problem?
-Javed

Similar Messages

  • Can a GPO block certain characters from being used in filenames, for SharePoint compatibility?

    What I'm wondering is: Is it possible to use GPOs to set up a prohibition on certain characters for saved file names, so that when someone attempts to save a file to a server share, it gives them a dialog box along the lines of "That name uses
    invalid characters, please call it something else and try again"?  
    The reason I ask is we've recently started using Office 365, and our server is set up to sync our office shares folder with our SharePoint Online site, so that people can access our documents from outside the office.  The problem is, the Office Uploader
    keeps running into files saved with invalid characters (invalid for SharePoint, anyway - things like pound sign, colon, etc).  I know there was a thread about a script that can go through after the fact and truncate file names, but I'm afraid this would
    confuse our users, and if possible I'd like to deal with the problem preemptively.  I'm pretty disappointed in SharePoint right about now.
    As it stands right now, if a user saves a file with an invalid character, it won't even warn them.  It'll save to the share, but simply fail to upload to the SharePoint site, and when the user goes looking for it online later, they'll be sorely disappointed.
    Some more details/background: I'm the sole (volunteer) IT guy at a small nonprofit that serves adults with disabilities, both in and out of the office.  We have about 13 computers (mostly laptops) with Win 8.1Enterprise and 28 or so employees.  
    We have a Win 2012 SBS that acts as domain controller and hosts a share that's available to all employees.  We have Office 365 E2 for NonProfits, and I've synced a Sharepoint library with our network share using SkyDrive Pro.
    We're trying to set up an auxiliary office in the next town over so clients don't have to travel all the way to our part of the county, so it's suddenly a lot more important that we get our documents online and synced up.
    If anyone has any ideas, I'd be extremely grateful!  Thanks!!

    Hi,
    As far as I know and as suggested by Mahdi, there is no such Group Policy settings which can help us to achieve this.
    However, as also suggested by Mahdi, we can ask for help in the following scripting forum to see whether some scripts can help achieving this.
    The Official Scripting Guys Forum
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG
    If we can get such a script, we can use Group Policy to deploy the script to clients.
    Best regards,
    Frank Shen

  • Formatting of Custom Variable (Price Value)

    Hi Guru's,
    I'm using one custom variable to store the Value (Price) .
    The Value is with 9 digits after the Decimal Place, The Domain was created by me.
    The Variable type is 20 Characters with 9 Decimal Places.
    I'm using this variable in displaying the Price Value.My Problem the value is apppearing as
    123456.000000000.
    But i want to display the Value as 123,456.000000000.
    I tried to use the FM Conversion_Exit_Alpha_Input, but i'm getting the Dump(Run time Error).
    How to get the Formatting done????
    Thanks in advance.
    Adi.

    use
    WRITE var CURRENCY <currency key of type waers>
    or WRITE var CURRENCY 'USD' "or any other currency type
    кu03B1ятu03B9к.

  • Using the Set Session Info to populate Custom Variable

    Hey everybody, I'm trying to setup a Set Session Info step so when a caller presses 1 for instance to go to a specific department I can go into the database and see how many callers pressed a certain button.
    Here's what I've done so far, I've setup a Session called session_info with the value of null.  At the very beginning of the script it shows session_info = Get Contact Info --Triggering Contact--, Session)
    Then in the menu field when a caller presses 1 I have the Set Session Info step with the Session being session_info and then in the Context tab I have "_ccdrVar3" for the name and "1" for the value.
    The script doesn't fail it's just not populating any Custom Variable with any data. 
    Also I've tried using the Set Enterprise Call Info and using a value of 1 and then Call.PeripheralVariable3 for the name.  Not sure what the proper way to do this is.  Anybody have any ideas?

    Hi
    You don't need a session var.
    You just need to use 'set enterprise data' to set a call.peripheralvariable to what you like.
    The data goes straight into the contactcalldetail table.. You can check it by doing:
    run uccx sql db_cra select * from contactcalldetail where customvariableX = 'yoursetting'
    Where 'yoursetting' is what you set the ent data to, and customvariableX is the var you use (e.g. customvariable3 if you use call.peripheralvariable3)
    Regards
    Aaron
    Please rate helpful posts..

  • JS scripted needed to add custom text plus filename to file info in document title

    Would greatly appreciate any help with this one...
    JS script to add custom text plus filename to file info in document title
    many thanks

    Super :O)
    I have a folder of say 50 images and I want to run a JS script batch
    example in the document title :  image Nr 81205
    custom text is "image Nr" +  file name "81205"
    activeDocument.info.title =" image Nr" + decodeURI(activeDocument.name);
    would this be correct without seening the file ext
    many thanks

  • Error when a TS step has a condition to check for custom variable. Variable is set on the collection.

    SCCM Version = SCCM 2012 R2 CU3
    Background
    I would like to setup some sort of safety check to help prevent accidentally sending and OSD out to all the servers managed by SCCM. The solution I am trying to use is making the TS do a check for a custom variable. If the variable is NOT set to TRUE
    then it should reboot the machine back to the currently installed OS.
    The variable is called "AllowOSD"
    AllowOSD is set correctly on my "Test Servers" collection
    I'm using the built in "Reboot Computer" step in the TS
    The condition on the Reboot Computer step is very basic - "Task Sequence Variable AllowOSD is not equal TRUE".
    I am testing the TS on a VM guest (Hyper-V)
    I'm deploying via PXE for these tests...
    The Issue
    As soon as the TS starts I get the annoyingly generic 0x80004005 error - smsts.log posted on github -
    smsts.log-A
    Possibly related issue:
    I have a vbscript that prompts for, and sets, the computer name. This works fine if placed after the format disk step, but if I place it before the format disk step then I get error 0x800700A1. If I format the internal HD first then I don't get an error
    and it all works fine.
    smsts.log posted on github - smsts.log-B
    Be aware VM_1 and VM_2 have unformatted disks (vhdx). I don't want them to be formatted before checking that the task sequence should really be running in the first place. As already mentioned, I am trying to prevent someone wiping out a bunch of servers
    by accident.
    My Task Sequences are based on the defaults created by the wizard. Here are the step I'm using...
    * Reboot if AllowOSD is not TRUE
    Restart in Windows PE
    * set Computer Name
    Partition DIsk 0 - DIOS
    Partition Disk 0 - UEFI
    Install Operating System
    Apply Windows Settings
    Apply Network Settings
    Setup Windows and Config Manager
    * = steps I have created.
    All other steps are defaults as created by wizard.
    Please note the "Restart in Windows PE" step does a conditional check on "_SMSTSInWinPE" without any errors. it is looking like the use of custom variables is not supported until the local HD is formatted and mounted. Can
    anyone confirm this behaviour, or what I can do to get around this problem.
    I have tried using a vbscript but triggering a reboot from VB does nothing, hence using the Reboot Computer step in the TS.
    Thanks
    "Well I'm all out of ideas." - 85

    As others have stated, your options are limited the moment you rely on PXE and WinPE but I think all you need to do is refine your collection target a bit.
    Why not instead of deploying your TS to All Systems (which is what I'm guess you're doing) and trying to put a condition in, deploy to a collection that is based on a workstation collection then include unknown computers?  Then any "known workstation"
    will have a MAC stored and thus be permitted to use the TS, unknown machines will be as well ... but "known servers" will be blocked?
    COnsidering the PXE looks for permitted MAC addresses this should work (Ill try it in my own lab).
    Tested and verified:
    Simply create a collection with a parent collection of all systems.
    Add a workstation query:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.OperatingSystemNameandVersion LIKE "%Workstation%"
    Then "include" unknown computers.
    End result is any machine that has "server" in it's version that has already been deployed will not be able to use the deployment.  If you'd rather base existing computer on an OU or group membership just modify the first query how you see fit.
     This will let known workstations (or whatever) and unknown machines get deployed to ... but known machines NOT in that collection will be skipped.

  • Certain characters not appearing in the "full name" when sending e-mail

    I have certain characters in my full name of one of my e-mail aliases in iCloud. However, those characters are simply absent from the name shown as sender name when sending mail from Mail app in OS X. For me the problematic characters are C5 A1 and C4 8D (UTF-8 codes).

    Yes, š and č are those. Sorry, I wasn't sure if they will work here. I have my full name containing the š and č in the "Full Name" field of the e-mail alias settings on web interface to the iCloud Mail. But in Mail on OS X my name in the "From" field appears without those two characters (other characters are OK) when I select this alias. Also, those two characters are invisible at the recipient's side. And yes, if I sent a copy of such a mail to myself the š and č are missing again in the "From" field.
    However, I have the same full name with š and č for my main e-mail address (iCloud account name). Using this main e-mail address š and č appear everywhere!
    Message was edited by: mikkec

  • Cannot insert Captivate Demo - filename contains illegal characters

    RoboHelp HTML v8 on XPpro. Captivate v4.
    I have created a simple Captivate v4 application demo and published to SWF.
    In my RHhtmlv8 project, I create a new topic, and choose Insert > Adobe Captivate Demo.
    The Insert dialog allows me to select my SWF file. It shows it in the Insert dialog and starts to play it.
    No matter what my SWF filename is (e.g. abc.swf, video1.swf, etc.), when I click the OK button in the Insert dialog, I get the error:
    'Unable to rename file, "abc.swf". The filename contains illegal characters.'
    I have searched the forums here and find no solution.
    How do you get support from this company? I went to the support link and it only showed Captivate as an option, even though I have a valid license for RH8 and have registered it. Yet - for 2 days now, I have not heard back from any support via that mechanism.
    Jeff

    Hi Jeff
    When you attempt to insert the demo, by chance do you still have the project open in the Captivate editor? If so, you likely need to close it there before attempting to insert into RoboHelp. I've seen all manner of weirdness with this.
    Another thing that seems to have happened recently that is worth looking at. When you Published your Captivate demo, did you Publish as AS2 or AS3? (For those that may wonder, AS refers to ActionScript. Similar to JavaScript and is the Flash programming language.)
    I've begun to notice issues with inserting Captivate content where I have published as AS3.
    Let us know... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Automator problem parsing variable as filename in disc image

    Dear apple/automator forum.
    I have just recently started using Automator, and i am experiencing a little problem which im hoping to get a helping hand with.
    First, heres my screenshot (sorry its in danish, ill explain what iwe done): www.bergsorensen.dk/screenshot.png
    - As for text
    - Set new variable
    - Get finder items
    - New disc iamge from finder items (variable as filename)
    I made a service which creates a new disc image of the selected finder items. Now, "in front" of that, i wanted a dialog box, where you could type the name of the new disc image - filename.
    The creating disc image flow works perfectly, though i cant get the dialog box to parse the variable as name to the disc image.
    Any suggestions?
    Best
    Kasper

    You might want to update your forum settings, since your screenshot indicates you are running *Snow Leopard's Automator*.
    The problem seems to be that you are mixing the text from your dialog with the input items - note that any selected items are already passed to the service, so you don't have to use additional actions to get the input. You just need to add a few actions to save and restore the original input when getting your other variable(s):
    1) *Set Value of Variable* { Variable: _Original Input_ } -- save the input items
    2) *Ask for Text* ( *Ignore Input* ) -- get a name for the disk image
    3) *Set Value of Variable* { Variable: _Image Name_ } -- now we can use this variable in other actions
    4 *Get Value of Variable* { Variable: _Original Input_ } ( *Ignore Input* ) -- get the input items back
    5) *New Disk Image* { (drag _Image Name_ variable to the "Volume name" and "Save as" fields) }

  • Certain characters such as "-" in UTF-8 are not displayed correctly in file

    Hi,
    Has anyone else seen a similar scenario?
    There are certain characters entered in the R/3 system (UTF-8) such as a and ("), which looks different then the normal dash or quotation, in a free form text field.  The values of these fields are transferred through XI via abap proxy and written to a mainframe file via the file adapter.  The default file encoding of our XI system is ISO-8859-1.  When the file is created these characters are interpreted as a (?).   When we change the encoding to UTF-8 in the receiver adapter, it translates the characters as (b.).  When I write the file out to the file system with encoding UTF-8, everything looks normal.
    Can anyone shed some light on this situation?
    Thanks.
    Best Regards,
    Duke

    Hi Stefan,
    To clarify, the (") the user is entering are curly quotes.  I found this on google.
    Windows ANSI (224 characters; since Win3.1). This adds the accented characters common in Western European languages (including vowels with acute, grave, circumflex and umlaut accents), plus some other typographical symbols like u201Ccurly quotesu201D, bullets, currency symbols etc. The additional 126 characters above the ASCII set are called u201CUpper ANSIu201D.
    This is a flat file using content conversion on the receiver file adapter.  In SXMB_MONI it looks correct.  If I do a view source, I can see that the quotations are the "curly quotes" and not the same as when I enter the character. 
    Best Regards,
    Duke

  • Mail crashes when I type certain characters in the "to" or "cc" field

    MacBook Pro Retina 13" 2.6 GHz Intel Core i5
    Mavericks 10.9.4
    Mail Version 7.3 (1878.6)
    Not using iCloud.
    When I type certain characters, mail crashes. It happens with d, D, s, S, (no other single characters) and the sequence "rain", where I can type "rai" without issues, but as soon as I type "n", mail crashes. (I have not found other sequences that make crash mail yet.)
    Maybe the previous recipients file is corrupt. Deleting it might help, but I don't know where it is stored in Mavericks.
    Any help is greatly appreciated.

    I hope that's the one:
    Process:         Mail [357]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.3 (1878.6)
    Build Info:      Mail-1878006000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [141]
    Responsible:     Mail [357]
    User ID:         xxx
    Date/Time:       2014-08-06 15:44:29.390 -0400
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  xx-xx-xx-xx-xx
    Crashed Thread:  14  Dispatch queue: NSOperationQueue 0x608000c2b540
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSObjectInaccessibleException', reason: 'CoreData could not fulfill a fault for '0x17c000ab <x-coredata://78710A67-BC98-4057-8CE8-17247FA5097A/ABCDNote/p95>''
    abort() called
    terminating with uncaught exception of type _NSCoreDataException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8f27a25c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff866e0e75 objc_exception_throw + 43
    2   CoreData                            0x00007fff92fc345d _PFFaultHandlerLookupRow + 2205
    3   CoreData                            0x00007fff92fc2813 _PF_FulfillDeferredFault + 259
    4   CoreData                            0x00007fff92fc2656 _sharedIMPL_pvfk_core + 54
    5   AddressBook                         0x00007fff85f13723 +[CNFromABInternalConversions updateAllPropertiesOnConact:fromABCDContact:] + 232
    6   AddressBook                         0x00007fff85f13215 __54+[CNFromABInternalConversions contactFromABCDContact:]_block_invoke + 130
    7   AddressBook                         0x00007fff85eedeac ABResultWithAutoreleasePool + 64
    8   AddressBook                         0x00007fff85f1318c +[CNFromABInternalConversions contactFromABCDContact:] + 92
    9   AddressBook                         0x00007fff85edf589 __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
    10  CoreFoundation                      0x00007fff8f1d98f4 __NSArrayEnumerate + 564
    11  AddressBook                         0x00007fff85edf55c -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 174
    12  AddressBook                         0x00007fff85edf4a6 -[NSArray(ABArrayAdditions) _abMap:] + 91
    13  AddressBook                         0x00007fff85f13092 +[CN(ContactSource) nts_fetchContactsWithCoreDataRequest:inContext:error:] + 123
    14  AddressBook                         0x00007fff85f12ff2 __74+[CN(ContactSource) fetchContactsWithCoreDataRequest:inAddressBook:error:]_block_invoke + 56
    15  AddressBook                         0x00007fff85ef482e -[ABAddressBook(ABAddressBook_CoreData_Private) abRunWithGlobalAPILockInFile:line:block:] + 51
    16  AddressBook                         0x00007fff85f12f79 +[CN(ContactSource) fetchContactsWithCoreDataRequest:inAddressBook:error:] + 238
    17  AddressBook                         0x00007fff85f5360c -[CNContactFetchRequest executeFetchWithDataMapper:observer:] + 60
    18  AddressBook                         0x00007fff85f535c3 __49-[CNContactStore makeObservableWithFetchRequest:]_block_invoke + 34
    19  ContactsFoundation                  0x00007fff8ba7455e __36-[_CNScheduledObservable subscribe:]_block_invoke + 50
    20  ContactsFoundation                  0x00007fff8ba75bf7 -[_CNImmediateScheduler performCancelableBlock:] + 12
    21  ContactsFoundation                  0x00007fff8ba74523 -[_CNScheduledObservable subscribe:] + 113
    22  ContactsFoundation                  0x00007fff8ba74afd -[CNObservable allObjects:] + 92
    23  ContactsAutocomplete                0x00007fff927060de -[CNAutocompleteLocalQuery fetchContacts] + 268
    24  ContactsAutocomplete                0x00007fff92705f6e -[CNAutocompleteLocalQuery run] + 31
    25  ContactsAutocomplete                0x00007fff92705c38 -[CNAutocompleteLocalSearchExecutor peopleForRequest:contactStore:] + 147
    26  ContactsAutocomplete                0x00007fff92705aaa -[CNAutocompleteLocalSearchExecutor executeRequest:error:] + 126
    27  ContactsAutocomplete                0x00007fff9270d3be -[CNAutocompleteSearchExecutionOperation doSynchronousExecution] + 69
    28  Foundation                          0x00007fff8ba7f8a1 -[__NSOperationInternal _start:] + 631
    29  Foundation                          0x00007fff8ba7f54b __NSOQSchedule_f + 64
    30  libdispatch.dylib                   0x00007fff8ef7d28d _dispatch_client_callout + 8
    31  libdispatch.dylib                   0x00007fff8ef817e3 _dispatch_async_redirect_invoke + 154
    32  libdispatch.dylib                   0x00007fff8ef7d28d _dispatch_client_callout + 8
    33  libdispatch.dylib                   0x00007fff8ef7f082 _dispatch_root_queue_drain + 326
    34  libdispatch.dylib                   0x00007fff8ef80177 _dispatch_worker_thread2 + 40
    35  libsystem_pthread.dylib             0x00007fff859a4ef8 _pthread_wqthread + 314
    36  libsystem_pthread.dylib             0x00007fff859a7fb9 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8ddf7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8ddf6d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8f19cf15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8f19c539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8f19be75 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox           0x00007fff923fba0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox           0x00007fff923fb7b7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox           0x00007fff923fb5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit               0x00007fff879af24e _DPSNextEvent + 1434
    9   com.apple.AppKit               0x00007fff879ae89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit               0x00007fff879a299c -[NSApplication run] + 553
    11  com.apple.AppKit               0x00007fff8798d783 NSApplicationMain + 940
    12  libdyld.dylib                 0x00007fff8798a5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8ddfc662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8ef7f421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8ef7f136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8ddf7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8ddf6d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8f19cf15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8f19c539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8f19be75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff87b4f05e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 3:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff8ddf7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8ddf6d18 mach_msg + 64
    2   com.apple.QuartzCore           0x00007fff87399377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore           0x00007fff873992ad thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8ddf7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8ddf6d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8f19cf15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8f19c539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8f19be75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff8bade967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff8bade76b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8ddfb9aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff8f1e8a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f325cc5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f326737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8f3265c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f326737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8f3265c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f326737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8f3265c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 10:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f325cc5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f326737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8f3265c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f326737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8f3265c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8ddfb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff859a5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8f326737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8f3265c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8f31af5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff859a3899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff859a372a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff859a7fc9 thread_start + 13
    Thread 14 Crashed:: Dispatch queue: NSOperationQueue 0x608000c2b540
    0   libsystem_kernel.dylib         0x00007fff8ddfb866 __pthread_kill + 10
    1   libsystem_pthread.dylib       0x00007fff859a435c pthread_kill + 92
    2   libsystem_c.dylib             0x00007fff8d705b1a abort + 125
    3   libc++abi.dylib               0x00007fff8ed8ff31 abort_message + 257
    4   libc++abi.dylib               0x00007fff8edb5952 default_terminate_handler() + 264
    5   libobjc.A.dylib               0x00007fff866e130d _objc_terminate() + 103
    6   libc++abi.dylib               0x00007fff8edb31d1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib               0x00007fff8edb3246 std::terminate() + 54
    8   libobjc.A.dylib               0x00007fff866e10b0 objc_terminate + 9
    9   libdispatch.dylib             0x00007fff8ef7d2a1 _dispatch_client_callout + 28
    10  libdispatch.dylib             0x00007fff8ef817e3 _dispatch_async_redirect_invoke + 154
    11  libdispatch.dylib             0x00007fff8ef7d28d _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ef7f082 _dispatch_root_queue_drain + 326
    13  libdispatch.dylib             0x00007fff8ef80177 _dispatch_worker_thread2 + 40
    14  libsystem_pthread.dylib       0x00007fff859a4ef8 _pthread_wqthread + 314
    15  libsystem_pthread.dylib       0x00007fff859a7fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff8ddfbe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff859a4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff859a7fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff8ddfbe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff859a4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff859a7fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff8ddfbe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff859a4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff859a7fb9 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff8ddfbe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff859a4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff859a7fb9 start_wqthread + 13
    Thread 14 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000010d653000  rcx: 0x000000010d652828  rdx: 0x0000000000000000
      rdi: 0x0000000000011e8b  rsi: 0x0000000000000006  rbp: 0x000000010d652850  rsp: 0x000000010d652828
       r8: 0x7468677561636e75   r9: 0x00007fff8d72d8d0  r10: 0x000000000c000000  r11: 0x0000000000000206
      r12: 0x000000010d6529b0  r13: 0x00007fff76e66640  r14: 0x0000000000000006  r15: 0x000000010d652890
      rip: 0x00007fff8ddfb866  rfl: 0x0000000000000206  cr2: 0x0000000109539000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x109014000 -        0x109306fff  com.apple.mail (7.3 - 1878.6) <84C51E40-00C5-3710-8A99-04A0F6D078F5> /Applications/Mail.app/Contents/MacOS/Mail
           0x1095d8000 -        0x1095dafff  apop.so (170.1) <97DD24EE-D5F4-34EB-B521-D7BA883D2606> /usr/lib/sasl2/apop.so
           0x109662000 -        0x109672ff7  dhx.so (170.1) <E4299F4A-F42C-397A-A306-58161EFD7686> /usr/lib/sasl2/dhx.so
           0x10967f000 -        0x109687fff  digestmd5WebDAV.so (170.1) <B11199EC-EF62-3592-AE51-38EBD1B6282F> /usr/lib/sasl2/digestmd5WebDAV.so
           0x109690000 -        0x109692fff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x109696000 -        0x109698fff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x10969d000 -        0x1096a5ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x1096aa000 -        0x1096aefff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x1096b3000 -        0x1096b5fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x1096b9000 -        0x1096befff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x1096c3000 -        0x1096cafff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x1096d3000 -        0x1096d5fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x10ad4c000 -        0x10ad50ffd  libpps.so (170.1) <C7604F07-E966-33F7-8727-93F000CBA92F> /usr/lib/sasl2/libpps.so
           0x10ad55000 -        0x10ad58fff  mschapv2.so (170.1) <C79F63BB-E66D-3552-9C4C-2D3EB14CEE01> /usr/lib/sasl2/mschapv2.so
           0x10ad5d000 -        0x10ad85ff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10ad9b000 -        0x10ad9dfff  pwauxprop.so (400.1) <B95FA3F5-0EE9-335E-BBC7-FDEDEB7F18F0> /usr/lib/sasl2/pwauxprop.so
           0x10ada2000 -        0x10ada4fff  shadow_auxprop.so (170.1) <E02127CB-F9C0-3E3B-ABBB-473EC0CB6DE7> /usr/lib/sasl2/shadow_auxprop.so
           0x10ada9000 -        0x10adabfff  smb_nt.so (170.1) <B508FD03-CE31-3B93-91D7-440BEDAD9581> /usr/lib/sasl2/smb_nt.so
           0x10adb0000 -        0x10adb2fff  smb_ntlmv2.so (170.1) <938D40AF-BEB3-3F55-B409-C84E3C2886FD> /usr/lib/sasl2/smb_ntlmv2.so
           0x10ae87000 -        0x10ae8affa  libCGXType.A.dylib (599.25.10.1) <9E609F91-BD17-3C51-A877-C80E7183A867> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10ae95000 -        0x10ae9dff3  libCGCMS.A.dylib (599.25.10.1) <9A4FAAD7-1C16-33F8-A615-1DCAB0546E31> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x10aea6000 -        0x10aeceffb  libRIP.A.dylib (599.25.10.1) <623091DF-5769-3326-90EB-44EFC8087660> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x10afbe000 -        0x10afc5fff  com.apple.SyncedDefaults (1.3 - 91.30.1) <26F0AD10-86CC-31A4-899C-097269680E05> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x10b009000 -        0x10b00cfff  libspindump.dylib (161.2) <E16E9BFB-8F34-366F-BE10-48993F5843BC> /usr/lib/libspindump.dylib
           0x10b019000 -        0x10b01afff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1371) <B3C35936-EE5F-3C40-95FF-2AE6C5D35638> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10d477000 -        0x10d47bffd  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
           0x10d771000 -        0x10d772fef +cl_kernels (???) <894D0725-320E-443F-A2A5-AE4D7EEDF3CF> cl_kernels
           0x10dc03000 -        0x10dc07ff7  com.apple.DirectoryServicesSource (8.0 - 1371) <AF6429A6-608F-36B2-BC58-51A0C2B17C31> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10ef47000 -        0x10ef4dff7  libCGXCoreImage.A.dylib (599.25.10.1) <1AB1B2B2-55A9-3780-BCB9-1B3CE375D739> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
           0x10ef5a000 -        0x10ef5bff9 +cl_kernels (???) <A6CF5018-DF00-4B14-BDD9-44726BC21EF5> cl_kernels
           0x10ef60000 -        0x10ef61ffa +cl_kernels (???) <9911C085-9E11-4817-93FF-F42BC388AE8A> cl_kernels
           0x10ef65000 -        0x10ef65ffd +cl_kernels (???) <AB5BF522-773A-4F1A-A2A8-0643F3955480> cl_kernels
           0x10ef8b000 -        0x10f071fef  unorm8_bgra.dylib (2.3.58) <280D6FDD-8CA5-36EC-9EA1-D7DC09598E20> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10f0c3000 -        0x10f1a3ff7  unorm8_rgba.dylib (2.3.58) <8252DC3E-7434-34C6-B4B9-CFD59B923D12> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x10f1f5000 -        0x10f1f5fff +cl_kernels (???) <6FB6F40E-5BFB-49C9-B9BC-1E3F8892810F> cl_kernels
           0x10f2b2000 -        0x10f2b3fe6 +cl_kernels (???) <4ACC164F-663C-4FB4-8DF9-1AFFE2F7204D> cl_kernels
           0x10f52a000 -        0x10f52bfe2 +cl_kernels (???) <8A66459C-0D0E-4615-A782-F9C3693E1BB3> cl_kernels
           0x10f535000 -        0x10f536fee +cl_kernels (???) <8C348740-E1A2-4989-AC48-2D5FF7B466EA> cl_kernels
           0x10f53f000 -        0x10f53ffe7 +cl_kernels (???) <F4DC3318-88F4-4F86-BF14-F7DEF7AF60E8> cl_kernels
           0x10f54a000 -        0x10f54afe7 +cl_kernels (???) <3DAE6673-F38E-4561-82E2-29CE06F2B102> cl_kernels
           0x10f742000 -        0x10f742feb +cl_kernels (???) <314670AD-8CA6-44F8-A32B-C2638DD8C666> cl_kernels
           0x10f7be000 -        0x10f7bffe4 +cl_kernels (???) <9B2B2FDF-A9BA-44C5-A5C4-95D1FBD61FB1> cl_kernels
           0x111ba3000 -        0x111c88fe7  unorm8_argb.dylib (2.3.58) <7B4A2580-C169-3ABC-8F62-B766914C59DD> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
           0x114ba7000 -        0x114d78fff  com.apple.audio.units.Components (1.10 - 1.10) <F74A9407-DDB5-3C4F-A051-47643871ED93> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
        0x7fff652da000 -     0x7fff6530d817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8579d000 -     0x7fff857e6fff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff857e7000 -     0x7fff857f5fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff857f6000 -     0x7fff8581effb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8581f000 -     0x7fff8582bff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8582e000 -     0x7fff8584cfff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8584d000 -     0x7fff859a1ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff859a2000 -     0x7fff859a9ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff85a28000 -     0x7fff85a86ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff85a87000 -     0x7fff85aa2ff7  com.apple.CalendarStore (7.0 - 1366) <27072D7F-8281-3958-A66C-3A3F862F3458> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff85aa3000 -     0x7fff85ed6ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff85ed7000 -     0x7fff86120ff7  com.apple.AddressBook.framework (8.0 - 1371) <86409BC9-C2EB-3BBC-8F4D-43DCA2B23C5D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff86121000 -     0x7fff86124ff7  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
        0x7fff86125000 -     0x7fff86126ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff86127000 -     0x7fff86388fff  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
        0x7fff86389000 -     0x7fff86391fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff86392000 -     0x7fff863ceff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff863cf000 -     0x7fff863e7ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff863e8000 -     0x7fff86420ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff86421000 -     0x7fff8643eff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8643f000 -     0x7fff86498fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff86499000 -     0x7fff864a2ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff864b6000 -     0x7fff864bcff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff864cc000 -     0x7fff864cefff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff86636000 -     0x7fff8666bffb  com.apple.datadetectors (5.0 - 246.0) <1C4C33FE-F364-3DBA-A1BC-4A53E594CFD3> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff8666c000 -     0x7fff86690fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff86691000 -     0x7fff8669bff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8669c000 -     0x7fff8669dfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8669e000 -     0x7fff866d2fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff866d3000 -     0x7fff86880f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff868b3000 -     0x7fff868cffff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff868e8000 -     0x7fff86a29fff  com.apple.QTKit (7.7.3 - 2826.19) <E634E6EC-2C7A-3F86-997B-CFC5D9F89E6B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff86a2d000 -     0x7fff86a2dfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff86bf8000 -     0x7fff86e89ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff86e8a000 -     0x7fff86e9cfff  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
        0x7fff86e9d000 -     0x7fff86f3afff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff86f3b000 -     0x7fff86fffff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff87000000 -     0x7fff87005fff  com.apple.EmailAddressing (7.3 - 1878.6) <AB4C59AB-A5A7-3514-820D-11C5DAB24DAF> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff8704d000 -     0x7fff87053ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff87057000 -     0x7fff870aafff  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
        0x7fff870ab000 -     0x7fff870affff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff870b0000 -     0x7fff87140ff7  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
        0x7fff8714b000 -     0x7fff8714bfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8720b000 -     0x7fff8725cff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8725d000 -     0x7fff8725efff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff87264000 -     0x7fff8726fff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87328000 -     0x7fff87329ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8732a000 -     0x7fff87371fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87372000 -     0x7fff8750eff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff87515000 -     0x7fff8757affb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8757b000 -     0x7fff875a0ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff875a1000 -     0x7fff875abff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff875ac000 -     0x7fff87896fff  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
        0x7fff87897000 -     0x7fff87959ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff87987000 -     0x7fff8798aff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff8798b000 -     0x7fff88501ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff88502000 -     0x7fff88565ffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff88566000 -     0x7fff885b3fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff885b4000 -     0x7fff885c0ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff885c1000 -     0x7fff885faff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff885fb000 -     0x7fff88608ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff88622000 -     0x7fff8885dfff  com.apple.CalendarPersistence (7.0 - 138.4) <BDD9B054-F274-357F-8343-6F8DAC7B0B36> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff88863000 -     0x7fff88885fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8889d000 -     0x7fff8889ffff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff888e2000 -     0x7fff8890fff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff88910000 -     0x7fff889fefff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff88b05000 -     0x7fff88b0fff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff88b10000 -     0x7fff88b12ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff88b13000 -     0x7fff88b1cff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff88b1d000 -     0x7fff88b90fff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff88b91000 -     0x7fff88ba5fff  com.apple.aps.framework (4.0 - 4.0) <2D42DCDD-055E-3EE1-97F8-FC447B495D3E> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff88ba6000 -     0x7fff88bcffff  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
        0x7fff88c1b000 -     0x7fff88c1bfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88c1c000 -     0x7fff88c21fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff88c22000 -     0x7fff88c57ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff88c93000 -     0x7fff88c9dff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
        0x7fff88c9e000 -     0x7fff88cfbfff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff88cfc000 -     0x7fff88cfdff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
        0x7fff88cfe000 -     0x7fff88d03ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff88d04000 -     0x7fff88d15fff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff88d16000 -     0x7fff88e00fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff88e01000 -     0x7fff890d5fc7  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
        0x7fff890d6000 -     0x7fff899f632b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff89b98000 -     0x7fff89b99fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff89b9a000 -     0x7fff89becff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff89bed000 -     0x7fff89c35ff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff89c36000 -     0x7fff89c85ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff89c86000 -     0x7fff89d3eff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff89d3f000 -     0x7fff89d47ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff89d48000 -     0x7fff89d59ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff89d5f000 -     0x7fff89e8dfff  com.apple.syncservices (8.1 - 722) <E4639527-E481-312D-8407-884737D4E605> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff89e8e000 -     0x7fff89e95ffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
        0x7fff89e96000 -     0x7fff89ea4fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff89ea5000 -     0x7fff89eb1ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff89eb2000 -     0x7fff89f96fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff89f97000 -     0x7fff8a268ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8a29a000 -     0x7fff8a38bff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8a38c000 -     0x7fff8a57dff3  com.apple.WebKit2 (9537 - 9537.77.4) <5090816E-BD02-350C-B4CE-613A246532F5> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8a57e000 -     0x7fff8a595ff7  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
        0x7fff8a5c1000 -     0x7fff8a60fff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8a610000 -     0x7fff8a65cffe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a65d000 -     0x7fff8a6c3fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8b48f000 -     0x7fff8b4abfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8b4ac000 -     0x7fff8b4ecff7  com.apple.CalDAV (7.0 - 155.2) <B96DAB4A-7431-3FD2-971B-726A67F6E004> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff8b4ed000 -     0x7fff8ba10fff  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
        0x7fff8ba11000 -     0x7fff8ba70fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8ba71000 -     0x7fff8ba77fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1371) <59351927-BCFF-3B94-AD1B-4C3DE6A8FD73> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8ba78000 -     0x7fff8bd76fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8bd77000 -     0x7fff8bd79fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8bd7a000 -     0x7fff8c1c8fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8c1c9000 -     0x7fff8c5a0fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8c5a1000 -     0x7fff8c5e1fff  com.apple.PassKit (1.0 - 1) <CE4A0FC6-6E65-38AC-BC8E-74821D713B43> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
        0x7fff8c5e2000 -     0x7fff8c712ff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8c713000 -     0x7fff8c742fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8c743000 -     0x7fff8c753ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8c754000 -     0x7fff8c757ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8c758000 -     0x7fff8c9b5ffa  com.apple.RawCamera.bundle (5.05 - 743) <362EA30F-3B5A-35C4-9455-339B0FDC89C6> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8c9b6000 -     0x7fff8c9b7ff7  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
        0x7fff8c9b8000 -     0x7fff8cae7fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8cae8000 -     0x7fff8cbeeff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8cbef000 -     0x7fff8cbf6ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
        0x7fff8cbf7000 -     0x7fff8cc10ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8d361000 -     0x7fff8d36dff7  com.apple.HelpData (2.1.4 - 90) <BEA1C549-40D3-35BF-9204-CB679FCB0648> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8d370000 -     0x7fff8d375fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8d376000 -     0x7fff8d37fff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d380000 -     0x7fff8d3d8ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d3d9000 -     0x7fff8d3dffff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8d3e2000 -     0x7fff8d3ecfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8d3ed000 -     0x7fff8d479ff7  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
        0x7fff8d4a0000 -     0x7fff8d4abff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8d4ac000 -     0x7fff8d4b0ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8d4b1000 -     0x7fff8d4befff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8d4bf000 -     0x7fff8d568ff7  com.apple.MailCore (7.3 - 1878.6) <ED4787DA-CBFC-3216-BE76-999597FF725C> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff8d569000 -     0x7fff8d63aff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D85430A6-1410-3B5F-9D11-17E2440B786E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8d63b000 -     0x7fff8d63efff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8d63f000 -     0x7fff8d641fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8d642000 -     0x7fff8d669ff7  com.apple.shortcut (2.6 - 2.6) <A62BC973-6782-3893-B014-EC6503AB7EAD> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8d697000 -     0x7fff8d69fff7  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
        0x7fff8d6a0000 -     0x7fff8d6a7fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8d6a8000 -     0x7fff8d6a8fff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8d6a9000 -     0x7fff8d732ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff8d75c000 -     0x7fff8db3dffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8db3e000 -     0x7fff8db68ff7  libsandbox.1.dylib (278.11.1) <D98EE9E5-BEB9-3396-924B-9CD100E81C41> /usr/lib/libsandbox.1.dylib
        0x7fff8db69000 -     0x7fff8db84ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8db87000 -     0x7fff8dd9dfff  com.apple.Mail.framework (7.3 - 1878.6) <C617BE97-1D88-380F-B6EC-6D33485A44D0> /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
        0x7fff8dd9e000 -     0x7fff8dde5ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
        0x7fff8dde6000 -     0x7fff8de02ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8de03000 -     0x7fff8de32ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8de33000 -     0x7fff8de8aff7  com.apple.IMAP (7.3 - 1878.6) <326F679E-7ADF-38BB-9EAD-BD08FA65573E> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
        0x7fff8de8b000 -     0x7fff8debaff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8debb000 -     0x7fff8dec7fff  com.apple.CalendarAgentLink (7.0 - 138.2) <D56910F9-5CC0-32D8-BA85-0631240F9B71> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8dec8000 -     0x7fff8df92fff  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
        0x7fff8df93000 -     0x7fff8dfbdff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8dfbe000 -     0x7fff8e12cff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8e12d000 -     0x7fff8e2c8ff8  com.apple.CFNetwork (673.3 - 673.3) <4375B7CB-34B6-3A26-99AC-2D2404AD9C9B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8e2c9000 -     0x7fff8e307ff7  com.apple.MailUI (7.3 - 1878.6) <2D08FD02-754E-3197-AB5F-7DF58946BF67> /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI
        0x7fff8e308000 -     0x7fff8e343fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8e38a000 -     0x7fff8e391fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8e392000 -     0x7fff8e3d7ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e3d8000 -     0x7fff8e3fafff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8e43a000 -     0x7fff8e43cff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8e43d000 -     0x7fff8e44aff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8e44b000 - 

  • Bash script to trim all filenames with special characters recursively?

    Hi,
    I have a 30 GB directory full of data I recovered from a friend's laptop after her Windows XP crashed. I'd like to burn that data, but I can't, because many of the filenames contain weird characters (spaces, accents, things even worse that my XTerm displays as inverted question marks). So, mkisofs exits with an error.
    I'd like to clean that mess up, but it would take months to do that manually. Well, I only know a very little Bash, but I think this problem is already too heavy for my modest knowledge. Here's the problem:
    - check the contents of directory ~/backup recursively
    - find files whose filenames contain characters other than [A-Za-z0-9] and then maybe "-" and "_" and ".".
    - replace these characters either by an "_" or just erase them
    Now how would I translate that into a little Bash script?
    Cheers...

    Heyyyyy... nice idea

  • Copying filenames with invalid characters in OSX

    I'd like to copy some folders for back up to an external hard disk from the internal hard disk on my G4. Problem is that some of the folders contain files were created in OS 9 and their filenames contain "/" symbols which apparently are not acceptable in OS X (10.3.9) which I am now running. After trying to drag the folders containing the files to the external hard disk I get an error message saying that they can't be copied because some of the filenames contain invalid characters. The problem files are scattered among files in many folders all over my G4's internal hard disk, and the task of finding and manually changing each one's filename is daunting. Is there a way to find and replace "/" with "." ? or some other more automated fix of the invalid characters? I'd prefer to keep the original files in their current folders on the G4. thanks
    G4   Mac OS X (10.3.9)  

    Does any of this software do what you want?
    (20586)

  • Problems with Filenames with Chinese Characters

    I seem to have problems with filenames with 2-byte characters like Chinese, Japanese and Korean in various apps. The problems occur when i download chinese music and import into iTunes :
    1. Torrent ( and all other ) files with 2-byte characters filename become junk characters in Finder after download from Safari.
    2. Music files created/downloaded by uTorrent displays 2-byte characters correctly in Finder.
    3. These downloaded music files when imported into iTunes becomes junk characters.
    4. Let say I wish to have a list of all filenames from (2). I do a ls -R > abc.txt in Terminal. abc.txt displays the filenames correctly in vi. However they become junk characters again when view using TextEdit.
    I've selected Chinese, Japanese, Korean in International setting. This is not about input method, just want to get the filenames correct in Finder and iTunes. Any advice is appreciated.

    3. These downloaded music files when imported into iTunes becomes junk characters.
    The ID 3 tags need to be in Unicode.
    http://homepage.mac.com/thgewecke/mlingos9.html#itunes
    4. they become junk characters again when view using TextEdit.
    TextEdit needs to be set to the correct encoding, it's not automatic.

  • Problem with Customer variable

    hi
    from improper installation of coldfusion "Customer variable
    in the registry I changed the configuration to the cookies but I
    have error in event log
    "An I/O operation initiated by the Registry failed
    unrecoverably. The Registry could not read in or write out or flush
    one of the files that contain the system's image of the Registry. "
    and my registry is full, this key
    HKLM/Software/Macromedia/coldfusion/CurrentVersion/clients
    and each time you restart the coldfusion the old entered the
    back regitre
    thank for help
    patrick

    Could it be that the code doesn't find any value in ZCURR_PM_T table for the specified input region?

Maybe you are looking for

  • IPhoto doesn't recognize iPhoto library - HELP!

    When I opened iPhoto today, there are "no photos" in the library, and when I open it holding the option key and try to select the iPhoto library (which does exist) it says it can't recognize those files. I can't get iPhoto to be the default applicati

  • Web service as a SOURCE model

    Can ODI use a web service as a source for ETL?

  • GENDAW32 - Error

    Hi All, My GENDAW32 transaction is not writing any output batch file ; though the records are there in Nafile and Polfile. As Batch File is empty; our print command is not creating any pdf. Could you please help me in the rules that should be there i

  • Lost Temporary Vector Smart Object file

    My computer just rebooted unexpectedly. I had just sent a file to the printer when the computer shut down and restarted. I was doing extensive edits to a Photoshop smart object, so even though I'd been saving, the saves were in a "temporary" file and

  • While Running Audit Rule - java.lang.StackOverflowError ?

    Hi All, I am using Jdeveloper 11.1.2.0.0. I developed some custome audit rule .While applying those rules into java files, i got the below error. java.lang.StackOverflowError      at java.util.regex.Pattern$GroupHead.match(Pattern.java:4168)      at