sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    Mac Scrambler for 2013

    Scheduled Pinned Locked Moved Developers' Forum
    11 Posts 4 Posters 921 Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • R Offline
      rossTnick
      last edited by

      Has anyone had any success using the Ruby scrambler for Mac for SketchUp 2013? I have a plugin I've been developing where it works fine for Windows, but when I scramble the same code using the Mac scrambler, the Mac version of SketchUp 2013 just crashes on startup. I've tried commenting out the entire file and re-scrambling, and then it still crashes on startup, which is leading me to believe that it's something with how SketchUp 2013 for Mac is trying to load the rbs file vs. the ruby code itself (since I commented out the entire file). Thanks for any thoughts!

      1 Reply Last reply Reply Quote 0
      • Dan RathbunD Offline
        Dan Rathbun
        last edited by

        Open the raw Ruby code in a GOOD code editor.
        Set the line endings to UNIX.
        Set the encoding to UTF-8 (without BOM) also known as: ANSI as UTF-8

        FYI: BOM means Bit-Order Mark

        Save the code.

        Re-scramble with either utility on its platform. The rbs file should now run on BOTH platforms.

        I'm not here much anymore.

        1 Reply Last reply Reply Quote 0
        • tt_suT Offline
          tt_su
          last edited by

          I've seem any trouble with this. Can you PM me your source RB and RBS file so I can have a look at it?

          1 Reply Last reply Reply Quote 0
          • R Offline
            rossTnick
            last edited by

            Tried those things using Notepad++ (not sure if this is considered good enough), but I still had the same problem. Any other suggestions. Much thanks.

            1 Reply Last reply Reply Quote 0
            • TIGT Offline
              TIG Moderator
              last edited by

              @rosstnick said:

              Tried those things using Notepad++ (not sure if this is considered good enough), but I still had the same problem. Any other suggestions. Much thanks.
              Many of us use Notepad++ for our rb files, with them encoded as UTF-8 (without BOM) [aka ANSI as UTF-8] - default setting, then scramble to rbs - which work on PC and MAC... so I don't see your issue ?

              TIG

              1 Reply Last reply Reply Quote 0
              • tt_suT Offline
                tt_su
                last edited by

                Do you have sample data we can look at?

                1 Reply Last reply Reply Quote 0
                • Dan RathbunD Offline
                  Dan Rathbun
                  last edited by

                  Do not load the file automatically on startup.

                  Put it in a sub-dir, named say "test" or whatever.

                  Start SketchUp.

                  Open the Ruby console.

                  Type in the console input box:
                  load "test/myplugin.rb" *

                  • replace myplugin.rb with the actual name of your file.

                  Copy and paste the load error message into this forum.

                  I'm not here much anymore.

                  1 Reply Last reply Reply Quote 0
                  • R Offline
                    rossTnick
                    last edited by

                    Thanks for the help with this everyone. Here's the error message I get from performing the manual load as described:

                    load "testwc/word_cake.rbs"
                    Error: #<SyntaxError: (eval):0:in load': /Users/carrieroy/Library/Application Support/SketchUp 2013/SketchUp/Plugins/testwc/word_cake.rbs:1: no .<digit> floating literal anymore; put 0 before dot RBS1.0 ^ /Users/carrieroy/Library/Application Support/SketchUp 2013/SketchUp/Plugins/testwc/word_cake.rbs:1: parse error, unexpected tINTEGER RBS1.0 ^ /Users/carrieroy/Library/Application Support/SketchUp 2013/SketchUp/Plugins/testwc/word_cake.rbs:1: Invalid char \030' in expression>
                    (eval)
                    (eval):0

                    1 Reply Last reply Reply Quote 0
                    • Dan RathbunD Offline
                      Dan Rathbun
                      last edited by

                      OH.. sorry. The standard Ruby load method (and require method,) cannot load scrambled files.

                      Try again with: Sketchup.load "testwc/word_cake"

                      ie, omit the file extension.

                      ALSO, in most SketchUp versions a NON-SCRAMBLED one-line loader file is often needed to load scrambled files. (This is due to a long-standing bug.)

                      So for example, (later if you release a plugin,) you would have a "RTN_Word_Cake" directory in the "Plugins" directory. (RTN is placeholder for whatever toplevel module namespace you choose to use.)
                      In that, you would have your "word_cake.rbs" scrambled file, and a one line unscrambled file named: "word_cake_loader.rb", which has a single line, thus:
                      Sketchup.require "RTN_Word_Cake/word_cake_loader"

                      (It is recommended to prefix any of your files or directories within the "Plugins" directory, with your namespace module name, followed by underscore.)

                      To load from the console commandline, either:
                      load "testwc/word_cake_loader"
                      or
                      Sketchup.load "testwc/word_cake_loader"


                      P.S.: I still feel it is most likely that some combination of incorrect End of Line characters, and/or encoding, is set for the PRE-scrambled Ruby code.

                      I'm not here much anymore.

                      1 Reply Last reply Reply Quote 0
                      • R Offline
                        rossTnick
                        last edited by

                        Thanks for the tips, I tried the Sketchup.load "testwc/word_cake" command from the console and the crash happens again (same crash as to when I load it at startup). Question: If I have one file scrambled, do I need to also scramble all other files that the scrambled file may "require"? Thanks for any help! Here's the resultant crash log:

                        Process: SketchUp [8255]
                        Path: /Applications/SketchUp/SketchUp.app/Contents/MacOS/SketchUp
                        Identifier: com.sketchup.SketchUp
                        Version: 13.0 (13.0.4123)
                        Code Type: X86 (Native)
                        Parent Process: launchd [131]
                        User ID: 501

                        Date/Time: 2013-10-10 08:47:00.349 -0500
                        OS Version: Mac OS X 10.8.4 (12E55)
                        Report Version: 10

                        Interval Since Last Report: 293246 sec
                        Crashes Since Last Report: 17
                        Per-App Interval Since Last Report: 258186 sec
                        Per-App Crashes Since Last Report: 16
                        Anonymous UUID: 970024C9-051C-E91F-3438-8D2029ED143E

                        Crashed Thread: 0 Dispatch queue: com.apple.main-thread

                        Exception Type: EXC_CRASH (SIGABRT)
                        Exception Codes: 0x0000000000000000, 0x0000000000000000

                        Application Specific Information:
                        Performing @selector(onTextEntered:) from sender NSTextField 0x968df30
                        [8255] stack overflow

                        Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
                        0 libsystem_kernel.dylib 0x9602aa6a __pthread_kill + 10
                        1 libsystem_c.dylib 0x931f1b2f pthread_kill + 101
                        2 libsystem_c.dylib 0x932285f3 __abort + 199
                        3 libsystem_c.dylib 0x93229576 __stack_chk_fail + 233
                        4 com.sketchup.SketchUp 0x0014c4e3 RubyDecryptToStringBuffer(char const*, std::string&) + 559
                        5 com.sketchup.SketchUp 0x0013e336 RequireRubyFile(char const*, char const*) + 431
                        6 com.sketchup.SketchUp 0x001421cd 0x1000 + 1315277
                        7 com.google.rubyframework 0x037deca2 call_cfunc + 315
                        8 com.google.rubyframework 0x037de0a4 rb_call0 + 1660
                        9 com.google.rubyframework 0x037df83c rb_call + 700
                        10 com.google.rubyframework 0x037d7955 rb_eval + 9329
                        11 com.google.rubyframework 0x037d2322 eval_node + 96
                        12 com.google.rubyframework 0x037e060a eval + 1068
                        13 com.google.rubyframework 0x037d2b8a rb_eval_string + 120
                        14 com.google.rubyframework 0x037dd211 rb_protect + 191
                        15 com.google.rubyframework 0x037d2bcb rb_eval_string_protect + 42
                        16 com.sketchup.SketchUp 0x00153d4a EvaluateRubyExpression(char const*, unsigned long*) + 66
                        17 com.sketchup.SketchUp 0x00153ef2 EvaluateRubyCommand(atlast::utils::atlast_ustring const&) + 359
                        18 com.sketchup.SketchUp 0x000eacef 0x1000 + 957679
                        19 com.sketchup.SketchUp 0x000ead61 0x1000 + 957793
                        20 libobjc.A.dylib 0x935285d3 -[NSObject performSelector:withObject:] + 70
                        21 com.apple.AppKit 0x998a9ad2 -[NSApplication sendAction:to:from:] + 436
                        22 com.apple.AppKit 0x998a98e0 -[NSControl sendAction:to:] + 102
                        23 com.apple.AppKit 0x9998faae -[NSTextField textDidEndEditing:] + 797
                        24 com.apple.Foundation 0x962e4e52 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 49
                        25 com.apple.CoreFoundation 0x9193f851 ___CFXNotificationPost_block_invoke_0 + 257
                        26 com.apple.CoreFoundation 0x9188ae8a _CFXNotificationPost + 2794
                        27 com.apple.Foundation 0x962cd988 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
                        28 com.apple.AppKit 0x996ad62b -[NSTextView(NSPrivate) _giveUpFirstResponder:] + 434
                        29 com.apple.AppKit 0x996ad46f -[NSTextView(NSKeyBindingCommands) insertNewline:] + 580
                        30 libobjc.A.dylib 0x935285d3 -[NSObject performSelector:withObject:] + 70
                        31 com.apple.AppKit 0x996ad14e -[NSResponder doCommandBySelector:] + 91
                        32 com.apple.AppKit 0x996acf83 -[NSTextView doCommandBySelector:] + 152
                        33 com.apple.AppKit 0x9973dfe3 -[NSTextInputContext doCommandBySelector:] + 121
                        34 com.apple.AppKit 0x9973df5d -[NSTextInputContext _handleCommand:] + 84
                        35 com.apple.AppKit 0x99738929 -[NSKeyBindingManager(NSKeyBindingManager_MultiClients) interpretEventAsCommand:forClient:] + 2006
                        36 com.apple.AppKit 0x99737db5 -[NSTextInputContext handleEvent:] + 1298
                        37 com.apple.AppKit 0x99737825 -[NSView interpretKeyEvents:] + 205
                        38 com.apple.AppKit 0x9967a3b8 -[NSTextView keyDown:] + 680
                        39 com.apple.AppKit 0x9989eaf1 -[NSWindow sendEvent:] + 7432
                        40 com.apple.AppKit 0x9989990f -[NSApplication sendEvent:] + 4278
                        41 com.sketchup.SketchUp 0x000520f6 0x1000 + 332022
                        42 com.apple.AppKit 0x997b362c -[NSApplication run] + 951
                        43 com.apple.AppKit 0x997565f6 NSApplicationMain + 1053
                        44 com.sketchup.SketchUp 0x00003655 start + 53

                        Thread 1:: Dispatch queue: com.apple.libdispatch-manager
                        0 libsystem_kernel.dylib 0x9602b9ae kevent + 10
                        1 libdispatch.dylib 0x97148c71 _dispatch_mgr_invoke + 993
                        2 libdispatch.dylib 0x971487a9 _dispatch_mgr_thread + 53

                        Thread 2:: com.apple.NSURLConnectionLoader
                        0 libsystem_kernel.dylib 0x960287d2 mach_msg_trap + 10
                        1 libsystem_kernel.dylib 0x96027cb0 mach_msg + 68
                        2 com.apple.CoreFoundation 0x91873f79 __CFRunLoopServiceMachPort + 185
                        3 com.apple.CoreFoundation 0x9187995f __CFRunLoopRun + 1247
                        4 com.apple.CoreFoundation 0x9187901a CFRunLoopRunSpecific + 378
                        5 com.apple.CoreFoundation 0x91878e8b CFRunLoopRunInMode + 123
                        6 com.apple.Foundation 0x962bb37a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
                        7 com.apple.Foundation 0x9631f448 -[NSThread main] + 45
                        8 com.apple.Foundation 0x9631f3cb NSThread__main + 1396
                        9 libsystem_c.dylib 0x931f05b7 _pthread_start + 344
                        10 libsystem_c.dylib 0x931dad4e thread_start + 34

                        Thread 3:: com.apple.CFSocket.private
                        0 libsystem_kernel.dylib 0x9602abe6 __select + 10
                        1 com.apple.CoreFoundation 0x918bd650 __CFSocketManager + 1632
                        2 libsystem_c.dylib 0x931f05b7 _pthread_start + 344
                        3 libsystem_c.dylib 0x931dad4e thread_start + 34

                        Thread 4:: JavaScriptCore::BlockFree
                        0 libsystem_kernel.dylib 0x9602a8e2 __psynch_cvwait + 10
                        1 libsystem_c.dylib 0x931f5280 _pthread_cond_wait + 833
                        2 libsystem_c.dylib 0x9327b0e0 pthread_cond_timedwait$UNIX2003 + 70
                        3 com.apple.JavaScriptCore 0x945504b8 WTF::ThreadCondition::timedWait(WTF::Mutex&, double) + 120
                        4 com.apple.JavaScriptCore 0x94767f63 JSC::BlockAllocator::blockFreeingThreadMain() + 115
                        5 com.apple.JavaScriptCore 0x9454e43c WTF::threadEntryPoint(void*) + 76
                        6 com.apple.JavaScriptCore 0x9477d8a0 WTF::wtfThreadEntryPoint(void*) + 16
                        7 libsystem_c.dylib 0x931f05b7 _pthread_start + 344
                        8 libsystem_c.dylib 0x931dad4e thread_start + 34

                        Thread 5:: JavaScriptCore::Marking
                        0 libsystem_kernel.dylib 0x9602a8e2 __psynch_cvwait + 10
                        1 libsystem_c.dylib 0x931f5280 _pthread_cond_wait + 833
                        2 libsystem_c.dylib 0x9327b095 pthread_cond_wait$UNIX2003 + 71
                        3 com.apple.JavaScriptCore 0x946d2aa6 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
                        4 com.apple.JavaScriptCore 0x946d299e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
                        5 com.apple.JavaScriptCore 0x9454e43c WTF::threadEntryPoint(void*) + 76
                        6 com.apple.JavaScriptCore 0x9477d8a0 WTF::wtfThreadEntryPoint(void*) + 16
                        7 libsystem_c.dylib 0x931f05b7 _pthread_start + 344
                        8 libsystem_c.dylib 0x931dad4e thread_start + 34

                        Thread 6:: JavaScriptCore::Marking
                        0 libsystem_kernel.dylib 0x9602a8e2 __psynch_cvwait + 10
                        1 libsystem_c.dylib 0x931f5280 _pthread_cond_wait + 833
                        2 libsystem_c.dylib 0x9327b095 pthread_cond_wait$UNIX2003 + 71
                        3 com.apple.JavaScriptCore 0x946d2aa6 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
                        4 com.apple.JavaScriptCore 0x946d299e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
                        5 com.apple.JavaScriptCore 0x9454e43c WTF::threadEntryPoint(void*) + 76
                        6 com.apple.JavaScriptCore 0x9477d8a0 WTF::wtfThreadEntryPoint(void*) + 16
                        7 libsystem_c.dylib 0x931f05b7 _pthread_start + 344
                        8 libsystem_c.dylib 0x931dad4e thread_start + 34

                        Thread 7:: JavaScriptCore::Marking
                        0 libsystem_kernel.dylib 0x9602a8e2 __psynch_cvwait + 10
                        1 libsystem_c.dylib 0x931f5280 _pthread_cond_wait + 833
                        2 libsystem_c.dylib 0x9327b095 pthread_cond_wait$UNIX2003 + 71
                        3 com.apple.JavaScriptCore 0x946d2aa6 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
                        4 com.apple.JavaScriptCore 0x946d299e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
                        5 com.apple.JavaScriptCore 0x9454e43c WTF::threadEntryPoint(void*) + 76
                        6 com.apple.JavaScriptCore 0x9477d8a0 WTF::wtfThreadEntryPoint(void*) + 16
                        7 libsystem_c.dylib 0x931f05b7 _pthread_start + 344
                        8 libsystem_c.dylib 0x931dad4e thread_start + 34

                        Thread 8:
                        0 libsystem_kernel.dylib 0x9602b0ee __workq_kernreturn + 10
                        1 libsystem_c.dylib 0x931f30ac _pthread_workq_return + 45
                        2 libsystem_c.dylib 0x931f2e79 _pthread_wqthread + 448
                        3 libsystem_c.dylib 0x931dad2a start_wqthread + 30

                        Thread 9:
                        0 libsystem_kernel.dylib 0x9602b0ee __workq_kernreturn + 10
                        1 libsystem_c.dylib 0x931f30ac _pthread_workq_return + 45
                        2 libsystem_c.dylib 0x931f2e79 _pthread_wqthread + 448
                        3 libsystem_c.dylib 0x931dad2a start_wqthread + 30

                        Thread 10:
                        0 libsystem_kernel.dylib 0x9602b0ee __workq_kernreturn + 10
                        1 libsystem_c.dylib 0x931f30ac _pthread_workq_return + 45
                        2 libsystem_c.dylib 0x931f2e79 _pthread_wqthread + 448
                        3 libsystem_c.dylib 0x931dad2a start_wqthread + 30

                        Thread 11:
                        0 libsystem_kernel.dylib 0x9602b0ee __workq_kernreturn + 10
                        1 libsystem_c.dylib 0x931f30ac _pthread_workq_return + 45
                        2 libsystem_c.dylib 0x931f2e79 _pthread_wqthread + 448
                        3 libsystem_c.dylib 0x931dad2a start_wqthread + 30

                        Thread 12:
                        0 libsystem_kernel.dylib 0x9602b0ee __workq_kernreturn + 10
                        1 libsystem_c.dylib 0x931f30ac _pthread_workq_return + 45
                        2 libsystem_c.dylib 0x931f2e79 _pthread_wqthread + 448
                        3 libsystem_c.dylib 0x931dad2a start_wqthread + 30

                        Thread 0 crashed with X86 Thread State (32-bit):
                        eax: 0x00000000 ebx: 0x66666667 ecx: 0xbfffdaec edx: 0x9602aa6a
                        edi: 0xac589a28 esi: 0x00000006 ebp: 0xbfffdb08 esp: 0xbfffdaec
                        ss: 0x00000023 efl: 0x00000206 eip: 0x9602aa6a cs: 0x0000000b
                        ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f
                        cr2: 0x097de000
                        Logical CPU: 0

                        Binary Images:
                        0x1000 - 0x76affb +com.sketchup.SketchUp (13.0 - 13.0.4123) <E3E0C68D-223F-357B-A2EE-1C3536E17C3E> /Applications/SketchUp/SketchUp.app/Contents/MacOS/SketchUp
                        0xa38000 - 0xa3afff +com.bugsplatsoftware.bugsplatframework (1.0) <AAB09F90-2880-36FC-AA52-B1EFBC9DC207> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/BugSplat.framework/Versions/A/BugSplat
                        0xa40000 - 0xa45ff7 +libCommonPreferences.dylib (1) <FD71AB28-1C2D-332A-AA56-75E75E73B5AF> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonPreferences.dylib
                        0xa50000 - 0x1232feb +libCommonVideo.dylib (1) <C135457A-BA2B-3D23-90C6-452FC7A0D9C1> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonVideo.dylib
                        0x1856000 - 0x1882ff7 +libCommonGeometry.dylib (1) <D55B3A8E-4C1A-3549-8257-A6060FF8B722> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonGeometry.dylib
                        0x189d000 - 0x1abfff7 +libCommonImage.dylib (1) <CBCD755A-DDB1-3CB0-890A-2271330FD19B> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonImage.dylib
                        0x1ae4000 - 0x1e15feb +libCommonGeoformats.dylib (1) <A0F35FB5-FD28-3DBB-84BB-7E7E43237EEB> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonGeoformats.dylib
                        0x1ee2000 - 0x1ee4fff +libCommonGeoutils.dylib (1) <7DD1A8CB-8B87-324B-867F-35196305418E> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonGeoutils.dylib
                        0x1eea000 - 0x1ef2ff3 +libCommonInternet.dylib (1) <629F3036-FE47-33F6-B861-9899B53A0F3A> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonInternet.dylib
                        0x1efc000 - 0x1f16ff7 +libCommonUtils.dylib (1) <FCFB05B5-7209-3FB2-BD16-8CAC4A134536> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonUtils.dylib
                        0x1f2b000 - 0x1f4dff3 +libCommonWarehouseapi.dylib (1) <846E2E16-53F7-3917-ACDF-CA1CD7D893F4> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonWarehouseapi.dylib
                        0x1f63000 - 0x1f79ff3 +libCommonZip.dylib (1) <5305BE54-7AA7-3608-B5BE-BF5EB35748EB> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCommonZip.dylib
                        0x1f83000 - 0x3081fe7 +DWGDirect (0) <B103FA4C-700D-1A02-F34A-59630B2D93E2> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/DWGDirect.framework/Versions/A/DWGDirect
                        0x37bc000 - 0x387cfcb +com.google.rubyframework (1.0) /Applications/SketchUp/SketchUp.app/Contents/Frameworks/Ruby.framework/Versions/A/Ruby
                        0x38ac000 - 0x38b5ffb +com.sketchup.WebDialog (1.0) <813EE0F8-7A47-329D-B0FE-65E0033B0BEE> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/WebDialog.framework/Versions/A/WebDialog
                        0x38bd000 - 0x39dcffb com.apple.WebKit (8536 - 8536.30.1) <4A5E9136-681F-3AB1-AD69-B59F2B9126E7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
                        0x3a8d000 - 0x3a9cfff +libAlchemyExt.dylib (1) <40436601-068B-311B-AABC-908142482E82> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libAlchemyExt.dylib
                        0x3ab5000 - 0x3af7ff3 +libIGAttrs.dylib (0) <04340FB5-3ED1-30EC-91AF-DC802541ADCE> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libIGAttrs.dylib
                        0x3b5f000 - 0x3be5ff3 +libIGCore.dylib (0) <8EA56D42-069E-3744-8F7B-FE2B8F14A742> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libIGCore.dylib
                        0x3c6e000 - 0x3f16ff7 +libIGGfx.dylib (0) <0E2F8EB6-643A-350F-8C59-51448488E589> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libIGGfx.dylib
                        0x3fe3000 - 0x400bffb +libIGMath.dylib (0) <7BAFEB7E-59FF-3C2F-BDD2-E4B93A3A36FF> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libIGMath.dylib
                        0x4039000 - 0x40d7ff7 +libIGSg.dylib (0) <9D63ACB8-1AB1-3C7C-A638-31E98A156238> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libIGSg.dylib
                        0x4175000 - 0x4187ff7 +libIGUtils.dylib (0) <3C3C0947-45E6-3226-8CE9-290AA96411FC> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libIGUtils.dylib
                        0x41a9000 - 0x41c4ff3 +com.sketchup.ALAppKit (1.0) <FF0A3BC6-61DF-381A-9202-169B9120D386> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/ALAppKit.framework/Versions/A/ALAppKit
                        0x41d1000 - 0x41d3fff com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling
                        0x41d9000 - 0x41d9fff com.apple.VideoDecodeAcceleration (1.1 - 😎 <783CC567-1598-36DD-BE91-7AB0AF860470> /System/Library/Frameworks/VideoDecodeAcceleration.framework/Versions/A/VideoDecodeAcceleration
                        0x41de000 - 0x4e73ff3 com.apple.WebCore (8536 - 8536.30.2) <D644997F-5F1A-34B4-AF32-DD427E9043E2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
                        0x56dd000 - 0x56eaff3 com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
                        0xc0dc000 - 0xc0dcff3 +cl_kernels (???) <1DD3A59D-3166-4FDB-AA20-644CDE97D4D8> cl_kernels
                        0xe780000 - 0xe784ffb libFontRegistryUI.dylib (100) <10CAC446-A500-3291-A144-7FAFA57D6720> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
                        0xe7d6000 - 0xe7d7ff8 ATSHI.dylib (341.1) <A51ED4FE-7821-30D9-960A-21E9EF5D3ABE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib
                        0xe7dc000 - 0xe7efff9 com.apple.webcontentfilter.framework (3.1 - 5) <43DAABB9-4850-31A7-8699-450B706D024F> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
                        0x11aa3000 - 0x11ac9fff com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <8DE3CB89-6682-3C69-8115-7027583F1B29> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
                        0x11c8e000 - 0x11e22ffa GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
                        0x11e59000 - 0x11e5dfff com.apple.IOAccelerator (74.5.1 - 74.5.1) <CB7CDE62-DAEC-35AF-8ADB-3271AA2DF921> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
                        0x11e64000 - 0x11e6efff libGPUSupportMercury.dylib (8.9.2) <302EC167-66A3-3E12-8416-F03F50CA96D9> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
                        0x11e76000 - 0x11ea1ff7 GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
                        0x11eaa000 - 0x11eb2ffd libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
                        0x11f79000 - 0x11f79ff5 +cl_kernels (???) <85DD4314-AAD0-4D7A-A9C8-E1381F055647> cl_kernels
                        0x120d0000 - 0x12251fff libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
                        0x13000000 - 0x1344dff3 com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.12.47 - 8.1.2) <5B46A344-20F2-3C75-9D42-D13092E6BB81> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsGLDriver
                        0x135b4000 - 0x135b5ff7 +SketchUp (0.0.1d1) <CB319A37-60E7-3FE3-B3E1-98849014A0D9> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/SketchUp.framework/Versions/A/SketchUp
                        0x147ea000 - 0x147ebff0 +TT_Geom_Bezier.bundle (0) <16734C16-E292-3D04-B390-E730BF6BDB01> /Users/USER/Library/Application Support/SketchUp 2013/*/TT_Geom_Bezier.bundle
                        0x15188000 - 0x151b1ff3 +3dsExporter (3DS Exporter Version 6.0 - 0.0.1d1) <839A5170-E3EC-3DE4-B5C6-30FBBA4165F0> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/3dsExporter.plugin/Contents/MacOS/3dsExporter
                        0x151cd000 - 0x151deff7 +lib3ds.dylib (1) <C49CAB13-F949-8713-16C5-8B594835296F> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/3dsExporter.plugin/Contents/Frameworks/lib3ds.dylib
                        0x151e5000 - 0x151eeff7 +com.atlast.importers.3ds (1.0) <66C65C62-22D3-36EA-A0F8-09F5B0AD49B1> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/3DSImporter.plugin/Contents/MacOS/3DSImporter
                        0x151f9000 - 0x1528bfff unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
                        0x15367000 - 0x15378ff7 +lib3ds.dylib (1) <C49CAB13-F949-8713-16C5-8B594835296F> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/3DSImporter.plugin/Contents/Frameworks/lib3ds.dylib
                        0x1537f000 - 0x15387ff3 +DaeExporter (0.0.1d1) <2C9FBFF0-326C-39A2-9502-49526B9809A7> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/DaeExporter.plugin/Contents/MacOS/DaeExporter
                        0x15391000 - 0x15397ff7 +DaeImporter (0.0.1d1) <ADF22BD4-CD19-3BEA-8627-4FCCA0418BC4> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/DaeImporter.plugin/Contents/MacOS/DaeImporter
                        0x153a1000 - 0x153adff7 +KmzExporter (0.0.1d1) <BF09BD57-AE30-3281-A35B-52C2FC2CACB8> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/KmzExporter.plugin/Contents/MacOS/KmzExporter
                        0x153b9000 - 0x153c1ffb +KmzImporter (0.0.1d1) <E45874AF-4CB6-38A3-9571-6C885AAC7BCF> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/KmzImporter.plugin/Contents/MacOS/KmzImporter
                        0x15500000 - 0x15524ff7 +ObjExporter (OBJ Exporter Version 6.0 - 0.0.1d1) <2E5BE7EE-737B-36EF-86B1-ADA7C208C112> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/ObjExporter.plugin/Contents/MacOS/ObjExporter
                        0x1557f000 - 0x15596ff7 +com.atlast.demimporter (1.0) <E642257A-9686-3400-B1C0-D8E5406083BF> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/DEMImporter.plugin/Contents/MacOS/DEMImporter
                        0x15647000 - 0x15815fff +slapi (1) <F3443778-F11B-308B-BE03-9B9061638B27> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/slapi.framework/Versions/A/slapi
                        0x158ed000 - 0x15b20fff +libCollada.dylib (1) <3F4EDDBE-7AB9-3966-A550-1D72C61F7518> /Applications/SketchUp/SketchUp.app/Contents/Frameworks/libCollada.dylib
                        0x15c43000 - 0x16326fff +FbxExporter (FBX Exporter Version 8.0 - ???) <1D051DAB-D2BE-3962-8445-9C2E16179807> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/FbxExporter.plugin/Contents/MacOS/FbxExporter
                        0x16532000 - 0x1656dff7 +Skp2Acad (0.1) <A7E90485-9B6F-31C7-BF45-633DAD1D5A30> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/Skp2Acad.plugin/Contents/MacOS/Skp2Acad
                        0x1658b000 - 0x165c0fff +com.atlast.Skp2AcadHlr (1.0) <E65AC56E-2830-3D66-9A40-29F8D2899931> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/Skp2AcadHlr.plugin/Contents/MacOS/Skp2AcadHlr
                        0x165da000 - 0x16610ff7 +com.atlast.Skp2AcadSection (1.0) <F6F27D36-A5CB-3E23-9EAF-65583F4C7014> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/Skp2AcadSection.plugin/Contents/MacOS/Skp2AcadSection
                        0x1662a000 - 0x16652fff +VRMLExporter (VRML Exporter Version 6.0 - 0.0.1d1) <5C57F45C-1149-3DAB-9971-E5A0B1FF0A81> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/VRMLExporter.plugin/Contents/MacOS/VRMLExporter
                        0x1666c000 - 0x16698ffb +XsiExporter (XSI Exporter Version 6.0 - 0.0.1d1) <5779654F-D19B-31F6-8917-3F8445979056> /Applications/SketchUp/SketchUp.app/Contents/PlugIns/XsiExporter.plugin/Contents/MacOS/XsiExporter
                        0x16b1d000 - 0x16bc6ff3 libruby.1.dylib (83.4) <625D513D-FAEF-32C1-BE82-49E6458F03AA> /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/libruby.1.dylib
                        0x8fef2000 - 0x8ff24e57 dyld (210.2.3) <4D38DEED-9837-3202-B8E9-41272D01EA2C> /usr/lib/dyld
                        0x90007000 - 0x9006fff7 com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
                        0x90070000 - 0x90168ff9 libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
                        0x90175000 - 0x90212ff7 com.apple.PDFKit (2.8.4 - 2.8.4) <639CF802-BE94-39C5-AC97-B5B42FF910C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
                        0x90216000 - 0x90223ff7 com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
                        0x90224000 - 0x904a5ff7 com.apple.RawCamera.bundle (4.08 - 707) <BCECB6A6-8B77-38DB-B9D0-CE50330CA7CE> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
                        0x904a6000 - 0x904adfff liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
                        0x904b8000 - 0x904ebfff libssl.0.9.8.dylib (47.1) <1725A506-BD80-39D5-8EE8-78D2FBBE194C> /usr/lib/libssl.0.9.8.dylib
                        0x904ec000 - 0x904f5fff com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
                        0x9086f000 - 0x90efbff3 com.apple.CoreAUC (6.16.13 - 6.16.13) <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
                        0x90efc000 - 0x90f3effb com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
                        0x90f3f000 - 0x90f56fff com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
                        0x90f57000 - 0x90f82ff9 com.apple.framework.Apple80211 (8.4 - 840.22.1) <DBC31BEB-B771-315F-852D-66ADC3BD75A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
                        0x90fc3000 - 0x90fc3fff libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
                        0x91842000 - 0x91a2affb com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
                        0x91a2b000 - 0x91a3dfff libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
                        0x91a3e000 - 0x91a8cffb libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
                        0x91a8d000 - 0x91a99ffe libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
                        0x91a9a000 - 0x91b8eff3 com.apple.QuickLookUIFramework (4.0 - 555.5) <5A62C87F-5F74-380B-8B86-8CE3D8788603> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
                        0x91b8f000 - 0x91c27fff com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
                        0x91c28000 - 0x91c2afff libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
                        0x91c61000 - 0x91cc3fff libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
                        0x91cc4000 - 0x91d33ffb com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
                        0x91d34000 - 0x91d64ff3 libtidy.A.dylib (15.10) <F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
                        0x91dcc000 - 0x91dd6fff libCSync.A.dylib (332) <86C5C84F-11EC-39C0-9FAC-A93FDEEC3117> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
                        0x91dd7000 - 0x91ddbffe libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
                        0x91ddc000 - 0x91e20ff7 libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
                        0x91e21000 - 0x91fddffd libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
                        0x91fde000 - 0x920ebff3 com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
                        0x920ec000 - 0x92111ffb com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
                        0x92112000 - 0x924f5fff com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
                        0x924f6000 - 0x9250cfff com.apple.CFOpenDirectory (10.8 - 151.10) <CDA91E5D-6F99-3001-BD31-82585FCF5CA2> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
                        0x9250d000 - 0x9292afff FaceCoreLight (2.4.1) <B12C8721-EFB3-30A2-9A1B-ABCDF5670764> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
                        0x9292b000 - 0x9293bff2 com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
                        0x9293c000 - 0x92959fff libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
                        0x9295a000 - 0x92969fff libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
                        0x9296a000 - 0x9296cffd libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
                        0x9296d000 - 0x929b4ff7 com.apple.framework.CoreWiFi (1.3 - 130.13) <1961CC70-C00D-31DE-BAB5-A077538CD5CB> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
                        0x929b7000 - 0x929b7fff com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
                        0x929f5000 - 0x929f7ffb libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
                        0x929fa000 - 0x92ab8ff3 com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
                        0x92ab9000 - 0x92ac5ffa com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
                        0x92d61000 - 0x92ebeffb com.apple.QTKit (7.7.1 - 2599.31) <B9AE5675-22B0-3AA9-903F-2195DA0B04F5> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
                        0x92ebf000 - 0x92ecfff7 libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
                        0x92ed0000 - 0x92ed1fff libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
                        0x92ed8000 - 0x92f0fffa com.apple.LDAPFramework (2.4.28 - 194.5) <23668AB5-68EA-37D2-978E-C9EF22BF8C0C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
                        0x92f10000 - 0x931d0ff3 com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
                        0x931d1000 - 0x931d9fff libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
                        0x931da000 - 0x93297feb libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
                        0x93298000 - 0x9329bffc libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
                        0x9329c000 - 0x93509ffb com.apple.imageKit (2.2 - 673) <CDB2AC11-6D60-34A7-83F9-F6E7DA25F97B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
                        0x9350a000 - 0x93617057 libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
                        0x93618000 - 0x93618fff com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
                        0x93619000 - 0x9361bfff com.apple.securityhi (4.0 - 55002) <F95F4BF5-2290-3CC4-A37A-4852F0AE6FAE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
                        0x9361c000 - 0x9361cffd com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
                        0x9361d000 - 0x93624ff3 com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
                        0x93625000 - 0x93641fff libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
                        0x93642000 - 0x93673fff com.apple.DictionaryServices (1.2 - 184.4) <A31BB2CE-6965-3610-8B11-EA26EC6D7EEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
                        0x93674000 - 0x9368bff4 com.apple.CoreMediaAuthoring (2.1 - 914) <DE0D100E-96AA-3E85-AFB0-43832E9B4C54> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
                        0x9368c000 - 0x93804ff5 com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
                        0x9382b000 - 0x93882ff3 com.apple.HIServices (1.20 - 417) <30AA0F48-A397-339E-BC62-24620B2B35BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
                        0x93883000 - 0x9388cffd com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
                        0x9388f000 - 0x938bbff7 libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
                        0x938bc000 - 0x93931ff7 com.apple.ApplicationServices.ATS (332 - 341.1) <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
                        0x93932000 - 0x9396dfef libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
                        0x9396e000 - 0x93c73ff7 com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
                        0x93c74000 - 0x93d72ff7 libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
                        0x93d73000 - 0x93d73fff com.apple.Carbon (154 - 155) <17F1B675-E054-3D2C-900B-C9CE69F1FC31> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
                        0x93d74000 - 0x93e1efff com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
                        0x93e1f000 - 0x93e2bff8 libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
                        0x93e2c000 - 0x93e2fffc libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
                        0x93e30000 - 0x93e4eff3 com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
                        0x93e4f000 - 0x93e59ffe com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
                        0x93e5a000 - 0x93ebeff7 com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
                        0x93ebf000 - 0x9413bff7 com.apple.QuickTime (7.7.1 - 2599.31) <3839E1F3-7948-3E68-9AE1-A0CEE8C59212> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
                        0x9413c000 - 0x9418bff6 libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
                        0x9418c000 - 0x9418cfff com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
                        0x9418d000 - 0x9443bffb com.apple.MediaToolbox (1.0 - 926.104) <DD264DFD-9AFB-38E2-A44C-B463DCB721A0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
                        0x9443c000 - 0x944ddfff libCoreStorage.dylib (296.16.1) <DC1DDFD5-5D45-3567-BC27-8E94558BD35A> /usr/lib/libCoreStorage.dylib
                        0x944de000 - 0x94542ff3 libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
                        0x94543000 - 0x94544ffd com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
                        0x9454a000 - 0x947a3ff5 com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
                        0x947a4000 - 0x948d7ff3 com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
                        0x948d8000 - 0x94939fff com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
                        0x9493a000 - 0x9497cfff libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
                        0x94997000 - 0x94aa2ff7 libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
                        0x94aa3000 - 0x94aa3fff com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
                        0x94aa4000 - 0x94ac9ff7 com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
                        0x94aca000 - 0x94b0cfff libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
                        0x94b64000 - 0x94baeff7 com.apple.framework.CoreWLAN (3.3 - 330.15) <74C4B50F-7016-341F-8261-D379B8F0CC97> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
                        0x94baf000 - 0x94ff1fff com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
                        0x950b4000 - 0x950b5ffd libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
                        0x950b6000 - 0x95359ff3 com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
                        0x9535a000 - 0x95373fff com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
                        0x95374000 - 0x953b9ff7 com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
                        0x953bd000 - 0x95493fff com.apple.DiscRecording (7.0 - 7000.2.4) <4C51CD9C-0E0E-3836-BA7F-62B1076FB974> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
                        0x95494000 - 0x95890feb com.apple.VideoToolbox (1.0 - 926.104) <4275B89E-F826-3F65-ACE1-89052A9CAC6B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
                        0x95891000 - 0x95898ffe com.apple.agl (3.2.1 - AGL-3.2.1) <F13F8669-5FC5-386C-9100-523D2BBF23CE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
                        0x958e5000 - 0x958e9fff com.apple.OpenDirectory (10.8 - 151.10) <B9244697-CB05-3BD3-80A7-D188B3747B03> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
                        0x958ea000 - 0x958eaffd libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
                        0x958eb000 - 0x958f4ff9 com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
                        0x958f5000 - 0x95937ff7 libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
                        0x95938000 - 0x9593cfff com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
                        0x9593d000 - 0x95a11ff3 com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
                        0x95a12000 - 0x95a13fff libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
                        0x95a14000 - 0x95a1effb libcsfde.dylib (296.16.1) <1FFBF474-797E-3B55-9B9C-CD243A6898AB> /usr/lib/libcsfde.dylib
                        0x95a1f000 - 0x95a2affb com.apple.DirectoryService.Framework (10.8 - 151.10) <ABBD7712-B220-36FC-90FE-0C19D02D21C4> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
                        0x95a2b000 - 0x95ac6fff com.apple.CoreSymbolication (3.0 - 117) <F705A8CD-A04A-3A84-970A-7B04BC05DA97> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
                        0x95ac7000 - 0x95acefff libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
                        0x95acf000 - 0x95af1fff libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
                        0x95af2000 - 0x95c2dff7 libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
                        0x95c64000 - 0x95c89ff7 com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
                        0x95c8a000 - 0x95da6ffb com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
                        0x95da7000 - 0x95da8ffb libodfde.dylib (18) <3A56DA84-5ACC-3D91-B31A-B87BC4BC34F1> /usr/lib/libodfde.dylib
                        0x95e26000 - 0x95e28ffd com.apple.EFILogin (2.0 - 2) <C2D9F59D-8E7E-3FB3-BEB4-1BA05E422B2A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
                        0x95e29000 - 0x95e83fff com.apple.Symbolication (1.3 - 93) <227F64A9-FC28-3680-BE92-FFAE86FD4866> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
                        0x95e84000 - 0x95f09ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
                        0x95f0a000 - 0x95f9cffb libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
                        0x95f9d000 - 0x95fbaff7 libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
                        0x95fbb000 - 0x96015ff3 com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <6313E06F-37FD-3606-BF2F-87D8598A9983> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
                        0x96016000 - 0x96030ffc libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
                        0x96031000 - 0x96081ff7 com.apple.CoreMediaIO (308.0 - 4155.4) <E2FF59A9-3728-3D17-A1AD-84DC1BDA2146> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
                        0x96082000 - 0x96097fff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
                        0x96098000 - 0x960d8fff com.apple.MediaKit (14 - 687) <8735A76E-7766-33F5-B3D2-86630070A1BA> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
                        0x960d9000 - 0x960f9ffd com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
                        0x960fa000 - 0x960fbfff libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
                        0x960fc000 - 0x961abff7 com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
                        0x961ac000 - 0x961dfffb com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
                        0x961e0000 - 0x96280ff7 com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
                        0x96281000 - 0x965a1ff3 com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
                        0x965a9000 - 0x965f0ff3 com.apple.CoreMedia (1.0 - 926.104) <D0E3BE86-12ED-31BE-816F-E72D757A9F2F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
                        0x965f1000 - 0x965fcfff libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
                        0x9660c000 - 0x96613ffb libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
                        0x96614000 - 0x9664affb com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
                        0x9664b000 - 0x96659fff libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
                        0x9665a000 - 0x96664fff libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
                        0x96665000 - 0x96762ff7 com.apple.DiskImagesFramework (10.8.3 - 345) <26D0C7F8-E87E-3511-8388-8EE616A39D6D> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
                        0x96763000 - 0x96780fff libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
                        0x96781000 - 0x9678ffff com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
                        0x967ea000 - 0x967edff9 libCGXType.A.dylib (332) <07B59FCC-6229-37C2-9870-70A18E2C5598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
                        0x96834000 - 0x96838fff com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
                        0x96839000 - 0x96992ffb com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <8BF022FC-C38A-34AA-8469-D98294094659> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
                        0x96993000 - 0x96996ffe com.apple.LoginUICore (2.1 - 2.1) <B0AE24CD-19FF-3AAD-AAAC-6FD047A2BEC4> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
                        0x96997000 - 0x969f2ff7 com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
                        0x969f3000 - 0x969f4fff libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
                        0x969f5000 - 0x96aa9fff com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
                        0x96aaa000 - 0x96cc1fff com.apple.CoreData (106.1 - 407.7) <EC4B8297-8E01-3778-A8A4-E8747F91109D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
                        0x96cc2000 - 0x96cccfff com.apple.DisplayServicesFW (2.7.2 - 357) <76D33A58-C39E-398A-9597-389A9B1FE76D> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
                        0x96cfd000 - 0x96d26fff libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
                        0x96d27000 - 0x96d27fff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
                        0x96d28000 - 0x96d29fff liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
                        0x96d2a000 - 0x96d69ff7 com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
                        0x96d6a000 - 0x96dc4ffb com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
                        0x96dc5000 - 0x96dc5fff com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
                        0x970b3000 - 0x970c6ff9 com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
                        0x970c7000 - 0x970d0fff com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
                        0x970d1000 - 0x970d7fff libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
                        0x970d8000 - 0x970dcff7 libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
                        0x970dd000 - 0x97143fff com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
                        0x97144000 - 0x97156ff7 libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
                        0x97157000 - 0x971a5ff3 com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
                        0x971a6000 - 0x97297ffc libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
                        0x97a35000 - 0x97a9dfe7 libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
                        0x97a9e000 - 0x97b35ff7 com.apple.ink.framework (10.8.2 - 150) <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
                        0x97b36000 - 0x97b39ffb libutil.dylib (30) <605DD210-46C2-3D4A-8DC1-08B0E80694FD> /usr/lib/libutil.dylib
                        0x97b3a000 - 0x97b3afff libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
                        0x97bd9000 - 0x97bdcff7 com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
                        0x97bdd000 - 0x97c59ff3 com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
                        0x97c5a000 - 0x97c60ffc libCGXCoreImage.A.dylib (332) <C370B56E-888F-31E8-B6F9-C3944725FBD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
                        0x97c61000 - 0x97d4aff7 libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
                        0x97d4b000 - 0x97d58ff7 com.apple.HelpData (2.1.4 - 85) <1E180AEF-53FF-3D8B-9513-7FCA1B25A4AB> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
                        0x97d59000 - 0x97d82ff7 libRIP.A.dylib (332) <521E60A6-A768-3CB8-B10D-D10EECD68A94> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
                        0x97d83000 - 0x97e64fff libcrypto.0.9.8.dylib (47.1) <E4820342-4F42-3DEB-90DB-DE5A66C5585E> /usr/lib/libcrypto.0.9.8.dylib
                        0x97e65000 - 0x97e66fff libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
                        0x97f78000 - 0x97f82fff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
                        0x97f83000 - 0x97f86ff7 libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
                        0x97f87000 - 0x97fabfff com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
                        0x97fac000 - 0x97ff4ff5 com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
                        0x97ff5000 - 0x9817eff7 com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
                        0x9817f000 - 0x98182ff3 com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
                        0x98183000 - 0x98183fff libSystem.B.dylib (169.3) <0A82D354-A1B4-3F3E-8C7E-5047C38D4668> /usr/lib/libSystem.B.dylib
                        0x98184000 - 0x98192ff3 libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
                        0x98193000 - 0x981a1ff7 libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
                        0x981a2000 - 0x981fdfff com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
                        0x981fe000 - 0x98257fff com.apple.QuickLookFramework (4.0 - 555.5) <4E381B7B-7EB5-37FD-9BA7-517DB48D07A7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
                        0x98258000 - 0x98264ff7 com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
                        0x98265000 - 0x982dfff7 com.apple.securityfoundation (6.0 - 55115.4) <4843FAEA-8161-34B3-A1F1-720154884E34> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
                        0x982e0000 - 0x9835bff3 com.apple.CorePDF (2.2 - 2.2) <5A52A1CF-4801-3E6C-BF6E-E5E75A8DBD8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
                        0x9835c000 - 0x9835ffff com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
                        0x98360000 - 0x98364ffc libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
                        0x98365000 - 0x98595fff com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
                        0x98596000 - 0x985e2fff libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
                        0x98614000 - 0x98762ff3 com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
                        0x98763000 - 0x9887bff7 com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
                        0x9887c000 - 0x988a9ffe libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
                        0x988aa000 - 0x988b0fff com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
                        0x995ea000 - 0x995fffff com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
                        0x99600000 - 0x9962dffb com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
                        0x9962e000 - 0x99659fff com.apple.shortcut (2.2 - 2.2) <FA94F2BF-37E1-3F16-9085-7BCCB815BAE9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
                        0x9965a000 - 0x9a216ff3 com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
                        0x9a217000 - 0x9a236ff3 com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
                        0x9a237000 - 0x9a28eff7 com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
                        0x9a28f000 - 0x9a2beffb com.apple.framework.Admin (12.1 - 12.1) <3B2354BC-169B-3702-8758-BF022F010131> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
                        0x9a2bf000 - 0x9a2bffff com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
                        0x9a2c0000 - 0x9a678ffa libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
                        0x9a679000 - 0x9a69dfff libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

                        External Modification Summary:
                        Calls made by other processes targeting this process:
                        task_for_pid: 2
                        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: 5213
                        thread_create: 1
                        thread_set_state: 0

                        VM Region Summary:
                        ReadOnly portion of Libraries: Total=256.2M resident=120.8M(47%) swapped_out_or_unallocated=135.4M(53%)
                        Writable regions: Total=231.8M written=19.3M(8%) resident=51.9M(22%) swapped_out=3204K(1%) unallocated=179.9M(78%)

                        REGION TYPE VIRTUAL
                        =========== =======
                        ATS (font support) 31.8M
                        ATS (font support) (reserved) 4K reserved VM address space (unallocated)
                        CG backing stores 19.7M
                        CG image 740K
                        CG raster data 116K
                        CG shared images 192K
                        CoreImage 4K
                        CoreServices 1072K
                        IOKit 12.6M
                        JS JIT generated code 16K
                        JS VM register file 4096K
                        JS garbage collector 644K
                        MALLOC 123.3M
                        MALLOC guard page 48K
                        Memory tag=240 4K
                        Memory tag=242 12K
                        Memory tag=249 156K
                        Memory tag=35 4292K
                        OpenCL 16K
                        SBRK 4096K
                        SQLite page cache 288K
                        Stack 69.7M
                        VM_ALLOCATE 16.2M
                        __DATA 18.1M
                        __DATA/__OBJC 436K
                        __IMAGE 528K
                        __IMPORT 36K
                        __LINKEDIT 55.0M
                        __OBJC 2656K
                        __OBJC/__DATA 64K
                        __PAGEZERO 4K
                        __TEXT 201.1M
                        __UNICODE 544K
                        mapped file 105.3M
                        shared memory 372K
                        =========== =======
                        TOTAL 672.9M
                        TOTAL, minus reserved VM space 672.9M

                        Model: Macmini6,2, BootROM MM61.0106.B03, 4 processors, Intel Core i7, 2.3 GHz, 4 GB, SMC 2.8f0
                        Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
                        Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
                        Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
                        AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x10E), Broadcom BCM43xx 1.0 (5.106.98.100.17)
                        Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports
                        Network Service: Ethernet, Ethernet, en0
                        Network Service: Wi-Fi, AirPort, en1
                        PCI Card: Apple 57761-B0, sppci_ethernet, Thunderbolt@12,0,0
                        PCI Card: pci11c1,5901, sppci_ieee1394openhci, Thunderbolt@13,0,0
                        PCI Card: pci12d8,400e, sppci_usbopenhost, Thunderbolt@11,0,0
                        PCI Card: pci12d8,400e, sppci_usbopenhost, Thunderbolt@11,0,1
                        PCI Card: pci12d8,400f, USB Enhanced Host Controller, Thunderbolt@11,0,2
                        Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
                        USB Device: hub_device, 0x8087 (Intel Corporation), 0x0024, 0x1a100000 / 2
                        USB Device: hub_device, 0x8087 (Intel Corporation), 0x0024, 0x1d100000 / 2
                        USB Device: hub_device, 0x0424 (SMSC), 0x2512, 0x1d180000 / 3
                        USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 5
                        USB Device: BRCM20702 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1d181000 / 4
                        USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x828a, 0x1d181300 / 8
                        USB Device: hub_device, apple_vendor_id, 0x9127, 0x40100000 / 2
                        USB Device: USB Optical Mouse, 0x0461 (Primax Electronics), 0x4d81, 0x40110000 / 6
                        USB Device: Natural® Ergonomic Keyboard 4000, 0x045e (Microsoft Corporation), 0x00db, 0x40120000 / 7
                        USB Device: FaceTime HD Camera (Display), apple_vendor_id, 0x1112, 0x40150000 / 5
                        USB Device: Apple Thunderbolt Display, apple_vendor_id, 0x9227, 0x40170000 / 4
                        USB Device: Display Audio, apple_vendor_id, 0x1107, 0x40140000 / 3

                        1 Reply Last reply Reply Quote 0
                        • tt_suT Offline
                          tt_su
                          last edited by

                          Can you send me the RB and RBS file you are working with? I'd like to hook this up to our own debugger.

                          1 Reply Last reply Reply Quote 0
                          • 1 / 1
                          • First post
                            Last post
                          Buy SketchPlus
                          Buy SUbD
                          Buy WrapR
                          Buy eBook
                          Buy Modelur
                          Buy Vertex Tools
                          Buy SketchCuisine
                          Buy FormFonts

                          Advertisement