Automatic return after keyboard entry

Hello,
I want to know if I always have to press the 'enter' key in the program that I've written if I know how long the entry should be that I will enter (length of 1 char).
Or can I do something other like a timeout ( if no key is pressed for a period that I chose it will do an automatic 'enter' )?
What I want to do is:
I want to have a query if the program should do something again. If so I will enter 'y' (for yes) to do it again, if it mustn't be done again I will press 'n' (for no).
Because my english is not so good (and perhaps the explanation of my problem) please ask if you cannot understand me.

Yes, you'll always have to press enter with pure Java. I recommend using a GUI or something like jcurses.

Similar Messages

  • Automatic 'return' after a paragraph

    It seems to me TLF automatically inserts a 'return' between two paragraphs. So if the first paragraph ends with a return, you get two empty lines between the paragraphs. Is this a correct assumption?
    I have been working around this by deleting the last return in a paragraph...
    But now (which maybe seems a little bit strange) I want to show two paragraphs without any return, so my work around doesn't do the trick anymore...
    Does anybody know if you can turn off the automatic return after a paragraph?

    Thanks for the replies!
    I think the "paragraph terminator" is what I would like to bypass...
    I've made a short example:
    package {
    import flash.display.Sprite;
    import flashx.textLayout.formats.TextLayoutFormat;
    import flashx.textLayout.container.ContainerController;
        import flashx.textLayout.elements.ParagraphElement;
        import flashx.textLayout.elements.SpanElement;
    import flashx.textLayout.elements.TextFlow;
    import flashx.textLayout.container.ScrollPolicy;
    public class Test2 extends Sprite
      public function Test2() {
       var tekstLayoutFormat:TextLayoutFormat = new TextLayoutFormat();
       var cs:Sprite = new Sprite();
       addChild(cs);
       var textFlow:TextFlow = new TextFlow();
       textFlow.format = tekstLayoutFormat;
       var tekstveldController = new ContainerController(cs, 400, 400);
       tekstveldController.verticalScrollPolicy = ScrollPolicy.OFF;
       tekstveldController.horizontalScrollPolicy = ScrollPolicy.OFF;
       textFlow.flowComposer.addController(tekstveldController);
       textFlow.flowComposer.updateAllControllers();
       var paragraphElement = new ParagraphElement();
       var spanElement = new SpanElement();
       spanElement.text = "text1";
       spanElement.fontSize = 10;
       paragraphElement.addChild(spanElement);
       var paragraphElement2 = new ParagraphElement();
       var spanElement2 = new SpanElement();
       spanElement2.text = "text2";
       spanElement2.fontSize = 10;
       paragraphElement2.addChild(spanElement2);
       textFlow.addChild(paragraphElement);
       textFlow.addChild(paragraphElement2);
       textFlow.flowComposer.updateAllControllers();
    This test shows:
    text1
    text2
    What I would like to get (maybe strangely enough) is:
    text1text2
    is this possible?

  • Using a Macro to add a Carriage Return after each data entry within all cells of an imported range of cells

    I have a macro that copies data from a Target workbook then pastes the data into a destination workbook.  I then wish to use lookups in the destination workbook to view specific data from the pasted range of data on a separate sheet. 
    The problem is, the cells that contain numbers from the pasted data have the green dogeared error flags associated with the cell. The only way I can make a lookup function work, is to go to each cell and manually enter a carriage return after each entry. 
    The code for the macro is given below.  What can be done so that the pasted data contains no errors associated with the number cells?  Or can a second macro be written to clean the data.  If so can you help me out?  Thanks in advance.
    Kindest Regards
    Sub ImportData()
     ' ImportData Macro allows user to select an Excel workbook (i.e. Orchestrate Excel Output),
     ' then copy & paste it into the MediaSpreadsheet.
        Dim wbk As Workbook
        Set wbk = Application.Run("MediaSpreadsheet_1.0.xlsm!OpenFile")
        If wbk Is Nothing Then
            Beep
            Exit Sub
        End If
        Set wbk = ActiveWorkbook
        Range("A9:S116").Copy
        Workbooks("MediaSpreadsheet_1.0.xlsm").Activate
        Sheets("OrchestrateData").Select
        Range("A1").Select
        ActiveSheet.Paste
        With Selection.Font
            .ColorIndex = xlAutomatic
            .TintAndShade = 0
        End With
        With Selection.Interior
            .Pattern = xlNone
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
        Selection.Borders(xlDiagonalDown).LineStyle = xlNone
        Selection.Borders(xlDiagonalUp).LineStyle = xlNone
        Selection.Borders(xlEdgeLeft).LineStyle = xlNone
        Selection.Borders(xlEdgeTop).LineStyle = xlNone
        Selection.Borders(xlEdgeBottom).LineStyle = xlNone
        Selection.Borders(xlEdgeRight).LineStyle = xlNone
        Selection.Borders(xlInsideVertical).LineStyle = xlNone
        Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
        wbk.Close
        Sheets("MediaSchedule").Select
    End Sub
    DAPulliam64

    Hi DAPAugust64,
    The green "dogeared error flags" of the cells means that you paste numbers in these cells, but they're formated as Text.
    So you need to change the cells back to the correct format so that the lookup function works fine. You can simply call this method after pasting:
    ActiveSheet.Cells(1, 1).NumberFormat = "General"
    ActiveSheet.Cells(1, 1) = ActiveSheet.Cells(1, 1).Text
    Or use PasteSpecial method to paste the numbers as well as it's format:
    https://msdn.microsoft.com/en-us/library/office/ff837425.aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Delay after entering passcode; also delays on keyboard entries.

    After updating to 7.1, there is a delay after entering passcode before system recognizes the entry; same thing with any application requiring keyboard entry of information.

    Try reset all settings
    Settings>General>Reset>Reset All Settings
    Note: Data will not be affected but settings for Wi-Fi, FaceTime, Message, Home Sharing, Wall Paper, Sound etc will be reset

  • Terminal window blinking cursor will not accept keyboard entry

    Have SunBlade100 w/ Solaris8.
    This is probably a dumb beginner question...
    When I enter certain commands at the terminal window - in this particular case
    # cat /dev/cua/a
    and I hit <return> the cursor skips to the next line, and
    continues blinking , and will not accept any keyboard entries.
    1. What is the significance of this? Is the cursor waiting further action, and if so, what?
    2. How do I get back to the prompt?
    3. Under this condition, is it safe to exit the terminal window by closing from the Window menu? (I can't type "exit" because the cursor won't accept keyboard entries, and Help for "closing the terminal" warns against closing from the Window menu because any background processes will not be terminated (and this may cause problems).
    Thanks in advance for any info on this.

    Thanks again for the info. <control>+C was exactly what I was looking for. It's coming back to me now-- the last time I had contact w/ UNIX was back in '85 at UC Berkeley (no GUI's back then!).
    I'm assuming that <control>+C is a graceful (i.e. relatively harmless way to exit the command.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Is there a way to designate automatically returning to your homepage when closing other windows/files/tabs etc.? Could do it on the Mini, but haven't found magic spell for new iMac. Thanks!

    Is there a way to automatically return to homepage after closing other windows/files/tabs etc.? Was able to do this on Mini, but have been unable to find setting to do it on new iMac. Thanks in advance!

    If you were able to do it on the Mini  you should be able to on an iMac, they use the same versions of OS X. You just have to recall how you set it up.

  • Deleted files automatically return

    Hi there,
    I have a strange problem. Somehow when I delete a collection of .torrent files (and empty secure my trash), after a while the deleted files 'automatically' return in my movies-folder. I want them deleted...
    What can cause this problem?
    It drives me crazy!

    The deleted files reappear after several minutes, I can't find what triggers this.
    In a terminal session this came up:
    PID TT STAT TIME COMMAND
    1 ?? Ss 0:01.03 /sbin/launchd
    10 ?? Ss 0:00.77 /usr/libexec/kextd
    11 ?? Ss 0:05.88 /usr/sbin/DirectoryService
    12 ?? Ss 0:01.63 /usr/sbin/notifyd
    13 ?? Ss 0:00.73 /usr/sbin/syslogd
    14 ?? Ss 0:04.22 /usr/sbin/configd
    16 ?? Ss 0:02.94 /usr/sbin/distnoted
    17 ?? Ss 0:03.40 /usr/sbin/mDNSResponder -launchd
    21 ?? Ss 0:06.46 /usr/sbin/securityd -i
    27 ?? Ss 0:01.69 /usr/sbin/cupsd -l
    28 ?? Ss 0:00.30 /System/Library/PrivateFrameworks/MobileDevice.frame
    29 ?? Ss 1:16.79 /usr/sbin/update
    30 ?? Ss 0:00.01 /sbin/SystemStarter
    34 ?? Ss 1:07.74 /System/Library/Frameworks/CoreServices.framework/Fr
    35 ?? Ss 0:01.48 /System/Library/CoreServices/loginwindow.app/Content
    36 ?? Ss 0:00.01 /usr/sbin/KernelEventAgent
    37 ?? Ss 0:05.11 /usr/sbin/kdcmond -n -a
    39 ?? Ss 0:00.01 /usr/libexec/hidd
    40 ?? Ss 0:05.83 /System/Library/Frameworks/CoreServices.framework/Ve
    42 ?? Ss 0:00.03 /sbin/dynamic_pager -F /private/var/vm/swapfile
    45 ?? Ss 0:01.99 /usr/sbin/diskarbitrationd
    49 ?? Ss 0:00.52 /usr/sbin/blued
    50 ?? Ss 0:00.01 autofsd
    51 ?? Ss 0:01.59 /usr/libexec/ApplicationFirewall/socketfilterfw
    52 ?? Ss 68:25.84 /usr/bin/WDDrvSvc
    73 ?? S 0:00.08 /usr/sbin/krb5kdc -n -r LKDC:SHA1.491A2E5605B106B27E
    78 ?? Ss 0:00.24 /Library/Application Support/VMware Fusion/vmnet-nat
    84 ?? Ss 0:00.19 /Library/Application Support/VMware Fusion/vmnet-dhc
    86 ?? Ss 0:00.00 /Library/Application Support/VMware Fusion/vmnet-net
    89 ?? Ss 0:00.00 /Library/Application Support/VMware Fusion/vmnet-net
    92 ?? Ss 0:01.16 /usr/sbin/nmbd -F
    93 ?? Ss 0:00.24 /Library/Application Support/VMware Fusion/vmnet-dhc
    95 ?? Ss 0:00.00 /Library/Application Support/VMware Fusion/vmnet-bri
    96 ?? Ss 0:04.99 /System/Library/CoreServices/coreservicesd
    100 ?? Ss 4:09.58 /System/Library/Frameworks/ApplicationServices.frame
    140 ?? Ss 0:01.02 /sbin/launchd
    144 ?? S 0:00.13 /System/Library/CoreServices/AirPort Base Station Ag
    148 ?? S 0:02.29 /System/Library/CoreServices/Spotlight.app/Contents/
    149 ?? S 0:00.33 /usr/sbin/UserEventAgent -l Aqua
    150 ?? S 0:00.00 /usr/sbin/pboard
    151 ?? S 0:03.46 /System/Library/CoreServices/Dock.app/Contents/MacOS
    152 ?? S 0:00.01 /Library/StartupItems/WDNotifier.app/Contents/MacOS/
    153 ?? S 0:06.33 /System/Library/Frameworks/ApplicationServices.frame
    155 ?? Ss 0:00.55 /usr/sbin/coreaudiod
    160 ?? S 0:38.22 /System/Library/CoreServices/SystemUIServer.app/Cont
    161 ?? S 0:55.21 /System/Library/CoreServices/Finder.app/Contents/Mac
    175 ?? S 0:03.12 /Library/Image Capture/Devices/EPSON Scanner.app/Con
    176 ?? S 0:09.57 /System/Library/Image Capture/Support/Image Capture
    185 ?? S 0:00.12 /Applications/iTunes.app/Contents/Resources/iTunesHe
    187 ?? S 0:00.87 /Applications/Microsoft AutoUpdate.app/Contents/MacO
    188 ?? S 0:05.46 /Library/Application Support/EyeTV/EyeTV Helper.app/
    189 ?? S 0:01.07 /Applications/StuffIt 12/MagicMenu.app/Contents/MacO
    194 ?? Ss 0:00.11 /Applications/StuffIt 12/MagicMenu.app/Contents/Reso
    196 ?? S 0:00.42 /System/Library/PrivateFrameworks/AOSNotification.fr
    202 ?? Ss 0:00.58 /usr/sbin/smbd -F
    203 ?? S 0:00.00 /usr/sbin/smbd -F
    259 ?? Ss 0:09.73 /usr/sbin/AppleFileServer
    2933 ?? SNs 0:00.98 /System/Library/Frameworks/CoreServices.framework/Fr
    2944 ?? S 0:36.64 /Applications/Firefox.app/Contents/MacOS/firefox-bin
    2949 ?? S 0:01.43 /Applications/Utilities/Terminal.app/Contents/MacOS/
    2975 ?? U 0:14.77 /Applications/iWork '08/Pages.app/Contents/MacOS/Pag
    2976 ?? S 0:00.19 /System/Library/Services/AppleSpell.service/Contents
    2982 ?? S 0:06.97 /Applications/Font Book.app/Contents/MacOS/Font Book
    3058 ?? S 0:00.91 /System/Library/Frameworks/SyncServices.framework/Ve
    3059 ?? Ss 0:00.03 /usr/sbin/ocspd
    3078 s000 Ss 0:02.70 login -pf arnoldconsten
    3079 s000 S 0:00.02 -bash
    3090 s000 R+ 0:00.00 ps A
    What does this mean? For me it is like ancient chinese....

  • How to disable TextEdit's automatic termination after closing last open document?

    Hi!
    I was wondering how to disable TextEdit's automatic termination after closing the last open document.
    It's so annoying!
    Thanks for everything!
    Chris.

    Quit TextEdit, launch the Terminal app in /Utilities, copy & paste this one-liner into the window that pops up, hit the return key, quit the Terminal app, and restart.
    defaults write com.apple.TextEdit NSDisableAutomaticTermination -bool yes
    27" i7 iMac (Mid 2011) refurb, OS X Mavericks (10.9.5), ML & SL, G4 450 MP w/Leopard, 9.2.2

  • System Preferences quit unexpectedly when access "keyboard" entry

    This error happens every time I try to open "keyboard" entry in System Preference, the keyboard pane can display for 1-2 seconds and then crashed with message "System Preferences quit unexpectedly".   I tried under safty mode, same error occurs.
    Process:         System Preferences [516]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         11.0 (11.0)
    Build Info:      SystemPrefsApp-214009000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [121]
    Date/Time:       2012-09-11 00:18:13.718 +0800
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          5128 sec
    Crashes Since Last Report:           18
    Per-App Interval Since Last Report:  214 sec
    Per-App Crashes Since Last Report:   17
    Anonymous UUID:                      BD3A8AA0-EACD-4A94-9523-563C312CA38D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000110f82008
    VM Regions Near 0x110f82008:
        mapped file            0000000110f77000-0000000110f81000 [   40K] r--/rwx SM=COW  /Applications/Borderlands.app/Contents/Resources/Borderlands.icns
    -->
        MALLOC_LARGE           0000000110fa5000-000000011110a000 [ 1428K] rw-/rwx SM=PRV 
    Application Specific Information:
    com.apple.preference.keyboard v.11.2 (Keyboard)
    objc[516]: garbage collection is ON
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreServices.OSServices          0x00000001063925f6 CIconStorageEntry::ReadIconFamilyItemsWithMask(IconFamilyResource const*, unsigned long long, IconContainerInfo*) + 724
    1   com.apple.CoreServices.OSServices          0x000000010634d3aa CIconStorageEntry::Load(CIconFamilyLoader*, unsigned int) + 650
    2   com.apple.CoreServices.OSServices          0x000000010639129a CLocalRefToSharedStorageEntry::Load(CIconFamilyLoader*, unsigned int) + 138
    3   com.apple.CoreServices.OSServices          0x00000001063458be _ISGetStorageRefFromLoader(CIconFamilyLoader*, unsigned int, unsigned int, unsigned int, unsigned int*) + 811
    4   com.apple.CoreServices.OSServices          0x000000010634cf05 _ISGetStorageByIconFile + 86
    5   com.apple.CoreServices.OSServices          0x000000010635cb78 _ISAddFSRefIconToImage + 109
    6   com.apple.LaunchServices                0x0000000106609fd5 AddImageFromLSInfo(FSRef const*, unsigned int, unsigned int, __CFString const*, unsigned char, unsigned int, OpaqueISImageRef**) + 716
    7   com.apple.LaunchServices                0x0000000106607cbb ISBuildBaseImage(FSRef const*, HFSUniStr255 const*, unsigned int*, FSCatalogInfo*, CustomBadgeResource*, unsigned int, unsigned char*, OpaqueISImageRef**, long) + 2273
    8   com.apple.LaunchServices                0x000000010660726d GetImageForFSItem + 781
    9   com.apple.LaunchServices                0x0000000106606c49 GetIconRefFromFileInfo + 557
    10  com.apple.AppKit                        0x00000001030ab9c3 -[NSWorkspace iconForFile:] + 132
    11  com.apple.preference.keyboard           0x000000010f7ada0a 0x10f7a3000 + 43530
    12  com.apple.CoreFoundation                0x00000001026e070d -[NSObject performSelector:withObject:] + 61
    13  com.apple.Foundation                    0x00000001029cad70 __NSThreadPerformPerform + 214
    14  com.apple.CoreFoundation                0x000000010265f4f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    15  com.apple.CoreFoundation                0x000000010265ed5d __CFRunLoopDoSources0 + 253
    16  com.apple.CoreFoundation                0x0000000102685b49 __CFRunLoopRun + 905
    17  com.apple.CoreFoundation                0x0000000102685486 CFRunLoopRunSpecific + 230
    18  com.apple.HIToolbox                     0x00000001048764d3 RunCurrentEventLoopInMode + 277
    19  com.apple.HIToolbox                     0x000000010487d6d3 ReceiveNextEventCommon + 181
    20  com.apple.HIToolbox                     0x000000010487d60e BlockUntilNextEventMatchingListInMode + 62
    21  com.apple.AppKit                        0x0000000102e7ee31 _DPSNextEvent + 659
    22  com.apple.AppKit                        0x0000000102e7e735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    23  com.apple.AppKit                        0x0000000102e7b071 -[NSApplication run] + 470
    24  com.apple.AppKit                        0x00000001030f7244 NSApplicationMain + 867
    25  com.apple.systempreferences             0x0000000101f06b30 0x101f05000 + 6960
    Thread 1:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000105cbd7e6 kevent + 10
    1   libdispatch.dylib                       0x0000000105a9978a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x0000000105a9831a _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x0000000105cbd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000105b72594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x0000000105b73b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000f501  rbx: 0x0000000002000000  rcx: 0x0000000110f77008  rdx: 0x0000000002000000
      rdi: 0x00007fff61b00860  rsi: 0x00000000ffffffff  rbp: 0x00007fff61b00900  rsp: 0x00007fff61b00830
       r8: 0x000000000000b000   r9: 0x00007fff61b008d7  r10: 0x0000000000000081  r11: 0x00007fff61b00778
      r12: 0x000000000000b000  r13: 0x00000000000094a6  r14: 0x000000011ff78010  r15: 0x0000000110f82008
      rip: 0x00000001063925f6  rfl: 0x0000000000010246  cr2: 0x0000000110f82008
    Logical CPU: 2
    Binary Images:
           0x101f05000 -        0x101f27fff  com.apple.systempreferences (11.0 - 11.0) <586F487B-3019-32FC-9BCD-44A604A7178C> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x101f3f000 -        0x101f3ffff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x101f44000 -        0x101f44fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x101f4b000 -        0x102234ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10234f000 -        0x1023b7ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1023e3000 -        0x1023fffff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x10241d000 -        0x1024bffff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x102510000 -        0x10253dfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
           0x10254c000 -        0x102630e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
           0x10264d000 -        0x102821ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x102970000 -        0x102970ffd +cl_kernels (??? - ???) <214E2364-1B57-4610-94E7-3982CEF54969> cl_kernels
           0x102975000 -        0x102975fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10297b000 -        0x102c94fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x102e76000 -        0x103a7cff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x104105000 -        0x10432ffe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10441d000 -        0x104441fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x104463000 -        0x1045bcfff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x104640000 -        0x104640fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10464b000 -        0x1046bbfff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1046fa000 -        0x104813fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x104874000 -        0x104ba0ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x104ced000 -        0x104e8cff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x104f3a000 -        0x104f45ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x104f4e000 -        0x104f9cfff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
           0x104fb6000 -        0x1051b8fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
           0x10524a000 -        0x10534cfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
           0x105376000 -        0x105376ffd +cl_kernels (??? - ???) <C3B9C0FC-FBD0-4D27-8500-282BDE98E448> cl_kernels
           0x10537b000 -        0x10538dff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
           0x105394000 -        0x1053fdfff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10543f000 -        0x105440ff3 +cl_kernels (??? - ???) <19D512E9-36AF-412C-BFB8-7ED159B0FEBD> cl_kernels
           0x105442000 -        0x105448fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x105454000 -        0x105455fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
           0x10545d000 -        0x10545dff1 +cl_kernels (??? - ???) <828C51A4-774B-4BA5-9D3C-E5F50FF117F5> cl_kernels
           0x10545f000 -        0x105476fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x105489000 -        0x1054f4ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10551f000 -        0x105522ff7  libCoreFSCache.dylib (??? - ???) <70D5EB80-24F5-3837-9302-EBD4CFCE5CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x105526000 -        0x105527fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10552c000 -        0x105554fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x105574000 -        0x105590ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10559e000 -        0x1055aeff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x1055b8000 -        0x10571ffff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
           0x1057c9000 -        0x105815ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x105841000 -        0x105854ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
           0x10585e000 -        0x1058d4fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
           0x105930000 -        0x1059a3fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
           0x105a01000 -        0x105a0cff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
           0x105a19000 -        0x105a1efff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
           0x105a25000 -        0x105a67ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
           0x105a76000 -        0x105a7bfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
           0x105a85000 -        0x105a8cfff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
           0x105a92000 -        0x105a93ffc +cl_kernels (??? - ???) <9459681E-3EFB-4668-B185-58A4BA926228> cl_kernels
           0x105a96000 -        0x105aa4fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
           0x105ab9000 -        0x105abafff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
           0x105abe000 -        0x105abffff  com.apple.ServerInformation (1.0 - 1) <D95BC225-E33B-32BC-9FEE-77423F8D7EBC> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x105ac4000 -        0x105ac8fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
           0x105ad1000 -        0x105ad1fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
           0x105adb000 -        0x105ae5ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
           0x105af2000 -        0x105af8fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
           0x105b02000 -        0x105b06fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
           0x105b0c000 -        0x105b0efff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
           0x105b13000 -        0x105b14ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
           0x105b1c000 -        0x105b1dff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
           0x105b22000 -        0x105bfffef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
           0x105c3e000 -        0x105c46fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
           0x105c4f000 -        0x105c8afff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
           0x105ca6000 -        0x105cc6fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
           0x105cdc000 -        0x105ce1ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
           0x105cee000 -        0x105cf7ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
           0x105d03000 -        0x105d04ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
           0x105d0a000 -        0x105d0bfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
           0x105d16000 -        0x105d1cff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
           0x105d25000 -        0x105d42fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
           0x105d56000 -        0x105d68ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
           0x105d71000 -        0x105e78fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
           0x105e8d000 -        0x105e92fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
           0x105e9c000 -        0x105eabff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
           0x105eb3000 -        0x105ec0ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
           0x105ecb000 -        0x1061e7fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x106264000 -        0x1062e7fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x106341000 -        0x106425fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x1064a0000 -        0x10653aff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10657c000 -        0x1065bbfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x1065d6000 -        0x106677ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x1066c6000 -        0x1066f6ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x106718000 -        0x10671ffff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x106726000 -        0x106734ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
           0x106740000 -        0x10674efff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10675c000 -        0x106868fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
           0x1068d3000 -        0x1068d5fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x1068dd000 -        0x1068f4fff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10690f000 -        0x10693aff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
           0x106949000 -        0x10696ffff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x10698b000 -        0x106a30fff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x106a64000 -        0x106a66fff  com.apple.framework.machinesettings (11.0 - 11.0) <447D4133-BE17-3148-B872-408BA0CC85C5> /System/Library/PrivateFrameworks/MachineSettings.framework/Versions/A/MachineS ettings
           0x106a6b000 -        0x107408c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x107514000 -        0x1075f3ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
           0x107640000 -        0x1076f3ff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
           0x107747000 -        0x1077cbff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x1077fe000 -        0x1078c5ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10790e000 -        0x10796aff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x1079a2000 -        0x1079b6ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x1079ca000 -        0x107a45ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x107a80000 -        0x107ac1fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x107adf000 -        0x107af4fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x107b0c000 -        0x107b12fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x107b22000 -        0x107b22fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x107b2a000 -        0x107b53fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x107b62000 -        0x107bbafff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x107bc9000 -        0x107be9fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x107bf3000 -        0x107bf8fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x107c00000 -        0x107d0dfff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x107d3f000 -        0x107d42fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
           0x107d4d000 -        0x107e83fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x107ea6000 -        0x107ea6fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x107eaa000 -        0x107f0afff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x107f14000 -        0x107faaff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x107fbc000 -        0x1083e9fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x108450000 -        0x108a34fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x108a78000 -        0x108b7dfff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x108bdf000 -        0x108c33fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x108c5e000 -        0x108c9eff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
           0x108cb6000 -        0x108cdafff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x108cf6000 -        0x108d29ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x108d48000 -        0x108d67fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
           0x108d75000 -        0x108e6afff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
           0x108e79000 -        0x108efeff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x108f2b000 -        0x108f30fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x108f3c000 -        0x108f47fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x108f53000 -        0x108f7cfff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x108f96000 -        0x109209fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x1092f7000 -        0x10934bff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x109373000 -        0x1093c5ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x1093d8000 -        0x1093defff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x1093e9000 -        0x1093fffff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x109411000 -        0x109450ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10945a000 -        0x10945cfff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x109461000 -        0x109464fff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x109469000 -        0x109496ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x1094a8000 -        0x10996ffff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x109d9a000 -        0x109d9afff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x109d9d000 -        0x109da4ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x109dad000 -        0x109e23fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x109e69000 -        0x109ecbff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x109f10000 -        0x109f4afe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x109f67000 -        0x109f67fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x109f71000 -        0x109fa6fff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x109fd4000 -        0x109fd8ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x109fe4000 -        0x109fe7fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x109ff4000 -        0x10a00aff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x10a02a000 -        0x10a047ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x10a060000 -        0x10a062ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x10a06c000 -        0x10a06fff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x10bc2d000 -        0x10bc3afff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
           0x10bd0f000 -        0x10bd13fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
           0x10bd25000 -        0x10bd29fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x10c347000 -        0x10c372ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x10c492000 -        0x10c4d6ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x10d793000 -        0x10dc9cff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x10e627000 -        0x10e62dfef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <303313AD-2D57-37A5-922B-3194C5DCD007> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10e634000 -        0x10e646ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
           0x10e68d000 -        0x10e692fff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10eb23000 -        0x10ec1dff7  com.apple.DiskImagesFramework (10.7.4 - 331.6) <C7860B00-E1CF-3851-9A3B-9F145B7F498F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x10ec7a000 -        0x10ed58fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x10edb8000 -        0x10edfefff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
           0x10ee0d000 -        0x10ee51ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x10ee64000 -        0x10ee9dfe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
           0x10eeb4000 -        0x10eeeffff  com.apple.LDAPFramework (3.2 - 120.2) <A2675243-9122-308D-A5C8-9C1C4FE7639D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x10ef19000 -        0x10efacff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10f2d9000 -        0x10f2e0fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <B3F07872-63B1-3AAF-A313-9B2886822C58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
           0x10f2f7000 -        0x10f2fbfff  com.apple.BezelServicesFW (230.2 - 230.2) <B65881E7-5089-34C3-8F47-1B727F0823CD> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
           0x10f300000 -        0x10f315fff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x10f6f3000 -        0x10f784ff7  unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <2683BD70-B7EE-3A60-A39C-2360B3C2A301> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x10f7a3000 -        0x10f7c7fff  com.apple.preference.keyboard (11.2 - 11.2) <F2748D67-EA08-372F-A558-E7F6041177F7> /System/Library/PreferencePanes/Keyboard.prefPane/Contents/MacOS/Keyboard
           0x10f7dd000 -        0x10f8c5fff  com.apple.Bluetooth (4.0.5 - 4.0.5f11) <4DF38224-CA01-3E76-BE84-0A510C1983A0> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
           0x10f93a000 -        0x10fac4fff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x10fbc7000 -        0x10fbf1fff  com.apple.BluetoothUI (4.0.5 - 4.0.5f11) <D5C0EACF-84E2-35FA-88AA-51A8D51AABB7> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
           0x10fc17000 -        0x10fc23fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
           0x10fc30000 -        0x10fc77ff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x10fc99000 -        0x110042fef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
           0x1100b6000 -        0x1104e9ff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
           0x110576000 -        0x110590fff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x1105a7000 -        0x1105f8ff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x11061d000 -        0x110db1fef  com.apple.CoreAUC (6.16.11 - 6.16.11) <3D40FEA5-AFE7-3752-A52E-D0F80304320A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x110dcd000 -        0x110e20fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff61b05000 -     0x7fff61b39baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 913
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=147.6M resident=102.5M(69%) swapped_out_or_unallocated=45.1M(31%)
    Writable regions: Total=16.2G written=104.8M(1%) resident=114.4M(1%) swapped_out=0K(0%) unallocated=16.1G(99%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2476K
    CG image                             20K
    CG raster data                       56K
    CG shared images                   3416K
    CoreImage                            84K
    CoreServices                        940K
    MALLOC                            539.3M
    MALLOC (reserved)                  15.6G        reserved VM address space (unallocated)
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=243                        4K
    Memory tag=251                       16K
    OpenCL                               48K
    STACK GUARD                        56.1M
    Stack                              15.6M
    VM_ALLOCATE                        16.2M
    __CI_BITMAP                          80K
    __DATA                             14.4M
    __IMAGE                             528K
    __LINKEDIT                         25.0M
    __RC_CAMERAS                        248K
    __TEXT                            122.6M
    __UNICODE                           544K
    mapped file                        39.9M
    shared memory                       312K
    ===========                      =======
    TOTAL                              16.4G
    TOTAL, minus reserved VM space    837.8M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.198.4.20)
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0xfa120000 / 4
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    I solved this problem finally, without horrible reinstall.
    Following is part of diagnostics information after crash. It is obvious a invalid address access error. Although I can't understant the root cause, but we can make some guess.
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000110f82008
    VM Regions Near 0x110f82008:
        mapped file            0000000110f77000-0000000110f81000 [   40K] r--/rwx SM=COW  /Applications/Borderlands.app/Contents/Resources/Borderlands.icns
    -->
        MALLOC_LARGE           0000000110fa5000-000000011110a000 [ 1428K] rw-/rwx SM=PRV
    When crash, system seems be accessing the resource "Borderlands.icns" which belongs to application "Borderlands.app", so I guess it maybe a problem of that applcation, "MALLO_LARGE", maybe the icon is too large or broken?  "Borderlands" is a game I installed before.
    Recall another synptom, everytime I restart OS X, I can open Finder->Application, but once the icon of "Borderlands.app" is scrolled onto display, Finder quit!
    Solution is simple, I delete that application in "Terminal".  Then, everything recover! 

  • Automatically return to main vi from subi

    I have a main VI and a sub VI. The sub vi front panel is opened when it is called and the main VI is updated. But I need to automatically return to the main VI front panel after running the subvi
    Attachments:
    24-01-2014 main vi.vi ‏121 KB
    electron volatage sub vi.vi ‏9 KB
    mass sweep subvi.vi ‏17 KB

    Norbert_B wrote:
    Despite that, the code and interfaces should be reworked to match common development style guides (e.g. gray scale colors).
    Agreed!
    What's the point of the outer case structure of the main VI (now encompassing while loop). Are you using "continuous run" for this???
    Yes, your color scheme is just garish!
    Why do you have colored case structures on the diagram? Makes the wires hard to see (try a boolean wire in one of you case structures!). Use the default white, or, if you absolutely must, very light pastel colors as background.
    There is no reason to maximise the front panels of the subVIs, blocking everything else on the desktop. Same for the diagrams.
    You have a lot of explicit repetitive operations (e.g. string subset). That could be done in a loop instead, reducing the code to <10% of the current complexity.
    Your small cases all contain "replace substring", since this is common to all cases of each case structure, it belongs after the case structure. The case structure only needs to contain what's different (the string in this case)! Even better use a string array and index into it with the ring. No case structure needed at all!
    If you want to make the subVIs interactive, they need to wait for user input. Currently they show for a nanosecond, complete, and disappear again. (hint: while loop and event structure, for example.)
    What is the point of the flat sequence? Seems unecessary.
    There is a primitive for "equal zero". Alternatively, wire the integer to the case selector and make one case zero and the other "default".
    Your front panel has a wild mix of fonts (arial. times roman, application, etc.). Make a gobal design decision!
    Why are your LEDs distorted in random directions? Keep them all round or at least all the same shape.
    LabVIEW Champion . Do more with less code and in less time .

  • I-photo has been working brilliantly until after my last update. Now it automatically closes after 10 seconds. The warning box appears but offers no solution. I have reloaded the software, but this has made no difference. Has anyone else experienced this

    I am having problems with i-photo. It automatically closes after 10 seconds. the warning box gives no guidance. Anyone else had this problem?

    What "warning box"?
    Assuming you're using iPhoto 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • In Firefox now there is a 5 second screen delay in keyboard entry appearing on the screen (in Gmail). Much disk activity during this delay. This began about 10 days ago.

    Win XP pro, 32 bi, , 4 core processor, 4 gig memory
    In Firefox only there is now a 5 second screen delay between keyboard entry and the input appearing on the screen (in Google Docs Gmail). There is much disk activity during this delay. This began about 10 days ago. The start may have began concurrent with a Firefox update. I have been using Firefox for years. This problem is not present when I run the same functions in IE

    Quote from: darkhawk on 07-February-14, 02:08:01
    Nope, that's fine.
    The MSI rep I forwarded this to said that he has forwarded on-ward as he did not have a GE40 for testing at the time.
    He did also agree and seem to think there is a problem with the EC that would cause this issue.
    I expect he may post here once a fix has been found.
    Thanks!
    I'll wait. I think it is clear that the problem goes away when I restart laptop, and also after changing and accepting settings in Control Panel -> Keyboard. But next fn + func. key will again cause default settings

  • IPhone Keyboard Entry Bug

    When using "My Account" (bookmark), there's 2 field to insert.
    One is "Wireless Number" and the other one is "Password".
    I found out I mistyped one of the number of "Wireless Number"
    after typing in 10 characters.
    That field is 10 digit(phone # with area code) and I couldn't insert anything.
    I mean even "backspace"(erase) didn't work.
    Which means I couldn't change anything after typing in 10 characters.
    I think it's definitely iPhone keyboard entry bug.
    Please fix it ASAP.

    Please call 1-800-My-iPhone to report this issue. A friendly Agent can log this and get it to the proper department.

  • Secondary mouse button automatically releases after 3 sec

    *Secondary mouse button automatically releases after 3 sec even if still pressed* since upgrade to snow leopard. I have to use extra switches attached via USB being unable to move my arms.
    Apart from that Airport works after adding Location, I am still not able to access internet or mail, skype and time machine backups work. Switching to my neighbours unsecured WLAN I have no problems accessing mail and internet.
    A guest with a PC was also unable to use my WLAN, he was able to connect (gave him password) but could not use internet.
    Any ideas? The "secondary mouse button automatically releases after 3 sec" issue seems not to be posted yet.

    Hi @devitojj 
    Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers. For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that when you power off your notebook it automatically restarts in 4 seconds.
    You have tried several steps to try and resolve this but there is no change.
    As it repeated the behavior with the hard drive removed, you know it is not an issue with Windows.
    You have tried updating the bios and returning it to bios defaults but no change.
    Here is a link from answers.microsoft.com that helped other people with this issue.
    Windows 7 computer restarts automatically after shutdown
    This does suggest you edit your registry which does have the potential to cause issues, so be very careful.  I would also suggest backing up your registry before you attempt it, just in case.
    Back up the registry  from Windows.microsoft.com
    If that has not helped, I would try removing the Cmos or RTC battery for 30 seconds and then replacing it.
    Please let me know if this helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Keyboard entry numerical control application builder

    This is a very simple "settings" question but I can's seem to find the answer myself so I thought I would just ask.  I have an application that uses numerical controls (to set the time interval between scans for one).  Everything works great on systems with LV installed.  However, when made into an application using Application Builder and running it on a system that only has the LV runtime engine on it, manual keyboard entry of values into the controls no longer functions.  The incremental controls work but is awfully inconvenient if the user wants to change from a scan once per second to once every thirty seconds--those 29 clicks get tiring.  Soooo....what setting needs to be set before building the application that will allow keyboard entry (i.e highlight and type) of values to be possible once the VI is an executable.
    Sorry this is so simple...but be kind to one who is new at making stand-alone executables.
    Thanks!!

    Thanks for your help.  Sorry to be so long in responding but our the day after I submitted my question our client had the machine in question removed for an update by the Information Services guys for an upgrade from W2k to XP.  The machine just came back today and I reinstalled LV runtime and the application and the keypad entry works perfectly.  So I'm afraid that the true nature of the my origninal difficulty will never be known.  I appreciate your suggestion on the NUM LOCK key as I was 10 or 15 minutes into my own troubleshooting before I thought to check it myself, so I just as easily might have forgotten to check it--so no ducking is required (it should have been the first thing I checked).
    I do appreciate the time taken to respond.  Have a great day!

Maybe you are looking for