• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

error 1009

New Here ,
Apr 20, 2014 Apr 20, 2014

Copy link to clipboard

Copied

I am getting error 1009 on a simple game i have made using actionscript 3 and have no idea how to fix it, can someone help me? Please!!!

scene 1- menu frame 1-

stop();

stage.removeEventListener(Event.ENTER_FRAME, Walk);

stage.removeEventListener(Event.ENTER_FRAME, Caught);

function go(Event:MouseEvent){

          gotoAndPlay(2);

}

start.addEventListener(MouseEvent.CLICK, go);

Scene 1 script frame 2

stop();

stage.addEventListener(KeyboardEvent.KEY_DOWN, KeyPress);

stage.addEventListener(KeyboardEvent.KEY_UP, KeyRelease);

stage.addEventListener(Event.ENTER_FRAME, Walk);

stage.addEventListener(Event.ENTER_FRAME, Caught);

stage.addEventListener(Event.ENTER_FRAME, Caught2);

stage.addEventListener(Event.ENTER_FRAME, Caught3);

stage.addEventListener(Event.ENTER_FRAME, Caught4);

stage.addEventListener(Event.ENTER_FRAME, Caught5);

var vDirection = "Null"

var vStuff = 0

function KeyPress(event:KeyboardEvent){

          if(event.keyCode == 39){

                    vDirection = "Right";

          }

          if(event.keyCode == 37){

                    vDirection = "Left";

          }

          if(event.keyCode == 38){

                    vDirection = "Up";

          }

          if(event.keyCode == 40){

                    vDirection = "Down";

          }

}

function KeyRelease(event:KeyboardEvent){

          vDirection = "Null";

}

function Walk(event:Event){

          if(vDirection == "Right"){

                    if(Walls.hitTestPoint(Player.x + Player.RightTargetMC.x, Player.y + Player.RightTargetMC.y, true)){

 

                    }else{

                              Walls.x = Walls.x - 10;

                              SecurityGuards.x = SecurityGuards.x - 10;

                              Smyth.x = Smyth.x - 10;

                              Stanley.x = Stanley.x - 10;

                    }

          }

 

          if(vDirection == "Left"){

                    if(Walls.hitTestPoint(Player.x + Player.LeftTargetMC.x, Player.y + Player.LeftTargetMC.y, true)){

 

 

                    }else{

                              Walls.x = Walls.x + 10;

                              SecurityGuards.x = SecurityGuards.x + 10;

                              Smyth.x = Smyth.x + 10;

                              Stanley.x = Stanley.x + 10;

                              }

          }

 

          if(vDirection == "Up"){

                    if(Walls.hitTestPoint(Player.x + Player.TopTargetMC.x, Player.y + Player.TopTargetMC.y, true)){

 

                    }else{

                              Walls.y = Walls.y + 10;

                              SecurityGuards.y = SecurityGuards.y + 10;

                              Smyth.y = Smyth.y + 10;

                              Stanley.y = Stanley.y + 10;

                    }

          }

          if(vDirection == "Down"){

                    if(Walls.hitTestPoint(Player.x + Player.BottomTargetMC.x, Player.y + Player.BottomTargetMC.y, true)){

 

                       //

                    }else{

                              Walls.y = Walls.y - 10;

                              SecurityGuards.y = SecurityGuards.y - 10;

                              Smyth.y = Smyth.y - 10;

                              Stanley.y = Stanley.y - 10;

 

                    }

          }

}

function Caught(event:Event){

          if(Player.hitTestObject(SecurityGuards.SG1)){

                    this.gotoAndStop(3);

}

}

function Caught2(event:Event){

          if(Player.hitTestObject(SecurityGuards.SG2)){

                    this.gotoAndStop(3);

}

}

function Caught3(event:Event){

          if(Player.hitTestObject(SecurityGuards.SG3)){

                    this.gotoAndStop(3);

}

}

function Caught4(event:Event){

          if(Player.hitTestObject(SecurityGuards.SG4)){

                    this.gotoAndStop(3);

}

}

function Caught5(event:Event){

          if(Player.hitTestObject(SecurityGuards.SG5)){

                    this.gotoAndStop(3);

}

}

var vKey = 0;

StanleyCupMC.stop();

function getout(event:MouseEvent){

          if (vKey == 1){

                       gotoAndStop(4);

          }

}

function pickupscup(event:MouseEvent){

          Stanley.gotoAndStop(2);

          vKey = 1;

}

StanleyCupMC.StanleyCup.addEventListener(MouseEvent.CLICK, pickupscup);

out.addEventListener(MouseEvent.CLICK, getout);

scene 1- script frame 3

stop();

stage.removeEventListener(Event.ENTER_FRAME, Walk);

stage.removeEventListener(Event.ENTER_FRAME, Caught);

function ta(Event:MouseEvent){

          gotoAndStop(2);

}

tryagain.addEventListener(MouseEvent.CLICK, ta);

scene 1 script frame 4

stop();

stage.removeEventListener(Event.ENTER_FRAME, Walk);

stage.removeEventListener(Event.ENTER_FRAME, Caught);

function pa(Event:MouseEvent){

          gotoAndStop(2);

}

playagain.addEventListener(MouseEvent.CLICK, pa);

TOPICS
ActionScript

Views

552

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 20, 2014 Apr 20, 2014

Copy link to clipboard

Copied

click file>publish settings>swf and tick 'permit debugging'.  retest.

the error message will contain the frame/layer and line number of the problematic code.  if that doesn't allow you to quickly correct your error copy and paste the complete error message and indicate the problematic line of code.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 20, 2014 Apr 20, 2014

Copy link to clipboard

Copied

i do not see permit debugging, under publish settings. also when i click the debug under the debug window the program crashes?? I am using flash cc

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 20, 2014 Apr 20, 2014

Copy link to clipboard

Copied

attach a screenshot of the publish settings panel after clicking file>publish settings>swf, http://forums.adobe.com/message/4209263#4209263

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 20, 2014 Apr 20, 2014

Copy link to clipboard

Copied

i found the publish setting- once i check that, do I click ok or publish? then do i go to control test?

this is what the output window says

TypeError: Error #1009: Cannot access a property or method of a null object reference.

          at BostickCupGame_fla::MainTimeline/frame2()[BostickCupGame_fla.MainTimeline::frame2:120]

          at flash.display::Sprite/constructChildren()

          at flash.display::Sprite()

          at flash.display::MovieClip()

          at BostickCupGame_fla::StanleyCupMC_7()

          at flash.display::Sprite/constructChildren()

          at flash.display::Sprite()

          at flash.display::MovieClip()

          at BostickCupGame_fla::StanleyCupMC_7()

          at flash.display::MovieClip/gotoAndPlay()

          at BostickCupGame_fla::MainTimeline/go()[BostickCupGame_fla.MainTimeline::frame1:6]

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 20, 2014 Apr 20, 2014

Copy link to clipboard

Copied

LATEST

what's line 120 of frame 2?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 20, 2014 Apr 20, 2014

Copy link to clipboard

Copied

this is the problem report from flash crashjing upon using the debug mode.

Process:         Flash Player Debugger [91707]

Path:            /Applications/Adobe Flash CC/*/Flash Player Debugger.app/Contents/MacOS/Flash Player Debugger

Identifier:      com.macromedia.Flash Player Debugger.app

Version:         11.8.800.176 (11.8.800.176)

Code Type:       X86-64 (Native)

Parent Process:  launchd [352]

Responsible:     Flash Player Debugger [91707]

User ID:         501

Date/Time:       2014-04-20 14:56:26.626 -0400

OS Version:      Mac OS X 10.9.2 (13C64)

Report Version:  11

Anonymous UUID:  82B95BBB-3A97-553B-1455-98481B1B4518

Sleep/Wake UUID: F5DCD2FC-1C46-483D-B7C4-6EC4C4A0EE70

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

Exception Type:  EXC_CRASH (SIGABRT)

Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30)'

abort() called

terminating with uncaught exception of type NSException

Application Specific Backtrace 1:

0   CoreFoundation                      0x00007fff8c29c25c __exceptionPreprocess + 172

1   libobjc.A.dylib                     0x00007fff8d824e75 objc_exception_throw + 43

2   CoreFoundation                      0x00007fff8c29c10c +[NSException raise:format:] + 204

3   Foundation                          0x00007fff89dd4087 -[NSKeyedUnarchiver initForReadingWithData:] + 3055

4   AppKit                              0x00007fff869a36b2 loadNib + 155

5   AppKit                              0x00007fff869a2cfc +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288

6   AppKit                              0x00007fff86c37542 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 140

7   AppKit                              0x00007fff869a29d3 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 605

8   AppKit                              0x00007fff8699e727 NSApplicationMain + 448

9   Flash Player Debugger               0x0000000100014de0 Flash Player Debugger + 85472

10  ???                                 0x0000000000000001 0x0 + 1

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

0   libsystem_kernel.dylib                  0x00007fff88140866 __pthread_kill + 10

1   libsystem_pthread.dylib                 0x00007fff8e07035c pthread_kill + 92

2   libsystem_c.dylib                       0x00007fff8e56db1a abort + 125

3   libc++abi.dylib                         0x00007fff92aebf31 abort_message + 257

4   libc++abi.dylib                         0x00007fff92b11952 default_terminate_handler() + 264

5   libobjc.A.dylib                         0x00007fff8d82530d _objc_terminate() + 103

6   libc++abi.dylib                         0x00007fff92b0f1d1 std::__terminate(void (*)()) + 8

7   libc++abi.dylib                         0x00007fff92b0ec5b __cxa_throw + 124

8   libobjc.A.dylib                         0x00007fff8d824fa1 objc_exception_throw + 343

9   com.apple.CoreFoundation                0x00007fff8c29c10c +[NSException raise:format:] + 204

10  com.apple.Foundation                    0x00007fff89dd4087 -[NSKeyedUnarchiver initForReadingWithData:] + 3055

11  com.apple.AppKit                        0x00007fff869a36b2 loadNib + 155

12  com.apple.AppKit                        0x00007fff869a2cfc +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288

13  com.apple.AppKit                        0x00007fff86c37542 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 140

14  com.apple.AppKit                        0x00007fff869a29d3 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 605

15  com.apple.AppKit                        0x00007fff8699e727 NSApplicationMain + 448

16  com.macromedia.Flash Player Debugger.app          0x0000000100014de0 0x100000000 + 85472

Thread 1:

0   libsystem_kernel.dylib                  0x00007fff88140e6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff8e070f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff8e073fb9 start_wqthread + 13

Thread 2:: Dispatch queue: com.apple.libdispatch-manager

0   libsystem_kernel.dylib                  0x00007fff88141662 kevent64 + 10

1   libdispatch.dylib                       0x00007fff919f243d _dispatch_mgr_invoke + 239

2   libdispatch.dylib                       0x00007fff919f2152 _dispatch_mgr_thread + 52

Thread 3:

0   libsystem_kernel.dylib                  0x00007fff88140e6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff8e070f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff8e073fb9 start_wqthread + 13

Thread 4:

0   libsystem_kernel.dylib                  0x00007fff88140e6a __workq_kernreturn + 10

1   libsystem_pthread.dylib                 0x00007fff8e070f08 _pthread_wqthread + 330

2   libsystem_pthread.dylib                 0x00007fff8e073fb9 start_wqthread + 13

Thread 0 crashed with X86 Thread State (64-bit):

  rax: 0x0000000000000000  rbx: 0x00007fff781d0310  rcx: 0x00007fff5fbfe078  rdx: 0x0000000000000000

  rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfe0a0  rsp: 0x00007fff5fbfe078

   r8: 0x00007fff92b12959   r9: 0x00007fff8e5958d0  r10: 0x0000000008000000  r11: 0x0000000000000206

  r12: 0x00007fff5fbfe200  r13: 0x0000610000130958  r14: 0x0000000000000006  r15: 0x00007fff5fbfe0e0

  rip: 0x00007fff88140866  rfl: 0x0000000000000206  cr2: 0x0000000102b8e000

 

Logical CPU:     0

Error Code:      0x02000148

Trap Number:     133

Binary Images:

       0x100000000 -        0x1013ddfd7 +com.macromedia.Flash Player Debugger.app (11.8.800.176 - 11.8.800.176) <4C4B7314-0E88-0F4E-35ED-4408DB618B71> /Applications/Adobe Flash CC/*/Flash Player Debugger.app/Contents/MacOS/Flash Player Debugger

       0x101619000 -        0x10161dfff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL

    0x7fff6e065000 -     0x7fff6e098817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld

    0x7fff8689b000 -     0x7fff868ecff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff868ed000 -     0x7fff868efff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib

    0x7fff868f0000 -     0x7fff868f7ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib

    0x7fff868f8000 -     0x7fff86981fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync

    0x7fff8699c000 -     0x7fff87512fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

    0x7fff87513000 -     0x7fff875defff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib

    0x7fff8769c000 -     0x7fff876a2ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib

    0x7fff876ca000 -     0x7fff87708ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

    0x7fff87709000 -     0x7fff87770ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils

    0x7fff87771000 -     0x7fff8777afff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices

    0x7fff8777b000 -     0x7fff87798ff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211

    0x7fff880dc000 -     0x7fff8812afff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib

    0x7fff8812b000 -     0x7fff88147ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib

    0x7fff88148000 -     0x7fff881adff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal

    0x7fff881c5000 -     0x7fff882b6ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib

    0x7fff8830f000 -     0x7fff88326ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory

    0x7fff88327000 -     0x7fff88343fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib

    0x7fff8838f000 -     0x7fff883ddfff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x7fff883de000 -     0x7fff88cfdaf3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff88cfe000 -     0x7fff89221fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer

    0x7fff89222000 -     0x7fff894f6fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage

    0x7fff894f7000 -     0x7fff8956efff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices

    0x7fff8956f000 -     0x7fff89659fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib

    0x7fff896cf000 -     0x7fff896e0ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib

    0x7fff896e1000 -     0x7fff89728fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib

    0x7fff89756000 -     0x7fff8975dfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS

    0x7fff8975e000 -     0x7fff8975fffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib

    0x7fff89760000 -     0x7fff897adff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore

    0x7fff897f4000 -     0x7fff89916ff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation

    0x7fff89917000 -     0x7fff8991ffff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib

    0x7fff89920000 -     0x7fff89958ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices

    0x7fff89b1e000 -     0x7fff89b1fff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print

    0x7fff89b20000 -     0x7fff89b2bff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth

    0x7fff89b69000 -     0x7fff89bb2fff  com.apple.CoreMedia (1.0 - 1273.49) <D91EC90A-BFF1-300D-A353-68001705811C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia

    0x7fff89bb3000 -     0x7fff89c04fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook

    0x7fff89c05000 -     0x7fff89dbdff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib

    0x7fff89dbe000 -     0x7fff8a0bcfff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff8a0bd000 -     0x7fff8a0c2ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility

    0x7fff8a0c3000 -     0x7fff8a233ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork

    0x7fff8a244000 -     0x7fff8a25cff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage

    0x7fff8a25d000 -     0x7fff8a26bfff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x7fff8a426000 -     0x7fff8a430ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport

    0x7fff8a431000 -     0x7fff8a43afff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis

    0x7fff8a572000 -     0x7fff8a575ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

    0x7fff8a598000 -     0x7fff8a607ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS

    0x7fff8a65c000 -     0x7fff8a66bff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis

    0x7fff8a66c000 -     0x7fff8a9a2fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox

    0x7fff8a9a3000 -     0x7fff8a9a7fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib

    0x7fff8b9b0000 -     0x7fff8b9b3fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

    0x7fff8ba48000 -     0x7fff8ba6cfff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters

    0x7fff8ba6d000 -     0x7fff8ba75fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib

    0x7fff8ba76000 -     0x7fff8ba79fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo

    0x7fff8babb000 -     0x7fff8bac6fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff8bac7000 -     0x7fff8bb47fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication

    0x7fff8bdda000 -     0x7fff8bdf1ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib

    0x7fff8bdf2000 -     0x7fff8bdf2fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices

    0x7fff8bdf3000 -     0x7fff8bdf7ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib

    0x7fff8be2e000 -     0x7fff8be98ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

    0x7fff8be99000 -     0x7fff8bf80ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib

    0x7fff8bfaa000 -     0x7fff8c0daff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv

    0x7fff8c14e000 -     0x7fff8c333fff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    0x7fff8c334000 -     0x7fff8c380ffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO

    0x7fff8c381000 -     0x7fff8c3d3fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib

    0x7fff8c3d4000 -     0x7fff8c3e5ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib

    0x7fff8c479000 -     0x7fff8c8acffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x7fff8c8ad000 -     0x7fff8cb97fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore

    0x7fff8cc4e000 -     0x7fff8cc53fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

    0x7fff8cc5a000 -     0x7fff8cd9bfff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit

    0x7fff8cd9c000 -     0x7fff8cd9dff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib

    0x7fff8d04a000 -     0x7fff8d074ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib

    0x7fff8d075000 -     0x7fff8d07bff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService

    0x7fff8d07c000 -     0x7fff8d097ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib

    0x7fff8d5d5000 -     0x7fff8d5ddffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

    0x7fff8d5de000 -     0x7fff8d5e5ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib

    0x7fff8d603000 -     0x7fff8d632fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib

    0x7fff8d633000 -     0x7fff8d686fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface

    0x7fff8d715000 -     0x7fff8d717fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove

    0x7fff8d722000 -     0x7fff8d811fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib

    0x7fff8d817000 -     0x7fff8d9c4f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib

    0x7fff8d9c5000 -     0x7fff8dacbff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x7fff8dacc000 -     0x7fff8dad5ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib

    0x7fff8daee000 -     0x7fff8daf0ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib

    0x7fff8daf1000 -     0x7fff8db64fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

    0x7fff8db65000 -     0x7fff8dba6fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis

    0x7fff8dba7000 -     0x7fff8dbafff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition

    0x7fff8dbb0000 -     0x7fff8dbd9fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices

    0x7fff8dbda000 -     0x7fff8dc33fff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x7fff8dc34000 -     0x7fff8dcbcff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF

    0x7fff8dcbd000 -     0x7fff8dcd6ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

    0x7fff8dcd7000 -     0x7fff8dcfeff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib

    0x7fff8dcff000 -     0x7fff8dd09ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox

    0x7fff8dd0a000 -     0x7fff8dea6ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

    0x7fff8dec6000 -     0x7fff8df97fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI

    0x7fff8df9a000 -     0x7fff8dfb0fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring

    0x7fff8dfb1000 -     0x7fff8dfe0ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD

    0x7fff8dfe1000 -     0x7fff8e06dff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

    0x7fff8e06e000 -     0x7fff8e075ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib

    0x7fff8e07d000 -     0x7fff8e4cbfff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox

    0x7fff8e4cc000 -     0x7fff8e4e7ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib

    0x7fff8e4e8000 -     0x7fff8e50cff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x7fff8e511000 -     0x7fff8e59aff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib

    0x7fff8e59b000 -     0x7fff8e5c2ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib

    0x7fff8e5c3000 -     0x7fff8e5cdfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib

    0x7fff8e8aa000 -     0x7fff8e8aaffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib

    0x7fff8eade000 -     0x7fff8eba0ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText

    0x7fff8ebc8000 -     0x7fff8ebc8ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

    0x7fff8ebc9000 -     0x7fff8ec8dff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

    0x7fff8ec8e000 -     0x7fff8ec8efff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz

    0x7fff8ec8f000 -     0x7fff8ec98ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth

    0x7fff8ed2a000 -     0x7fff8ed31fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib

    0x7fff8ed32000 -     0x7fff8ef7aff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x7fff8ef7b000 -     0x7fff8f0e9ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib

    0x7fff8f0ea000 -     0x7fff8f0ebff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib

    0x7fff8f0ec000 -     0x7fff8f0eeff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI

    0x7fff8f0f5000 -     0x7fff8f0f7fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib

    0x7fff8f0f8000 -     0x7fff8f137fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff8f138000 -     0x7fff8f28bff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

    0x7fff8f69f000 -     0x7fff8f78dfff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x7fff8f8fd000 -     0x7fff8f901ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff8f902000 -     0x7fff8f903fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib

    0x7fff8f9bd000 -     0x7fff8f9d6ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity

    0x7fff8f9d7000 -     0x7fff8fa87ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib

    0x7fff8fa88000 -     0x7fff8fab2ff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib

    0x7fff8fab3000 -     0x7fff8facbff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

    0x7fff8facc000 -     0x7fff8fb1aff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib

    0x7fff8fb1b000 -     0x7fff8fb1ffff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels

    0x7fff8fb20000 -     0x7fff8fb48ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib

    0x7fff8fb4c000 -     0x7fff8fbdcfff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata

    0x7fff8fbdd000 -     0x7fff8fc28fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore

    0x7fff8fc72000 -     0x7fff8fc76ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib

    0x7fff8fc77000 -     0x7fff8fcd6fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN

    0x7fff8fd3a000 -     0x7fff8fd4afff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib

    0x7fff8fd4b000 -     0x7fff8fd4bfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff8fd4c000 -     0x7fff8fd85ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD

    0x7fff8fd86000 -     0x7fff8fdaafff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib

    0x7fff8fdab000 -     0x7fff8fdadfff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib

    0x7fff8fe2c000 -     0x7fff8fe5cfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices

    0x7fff8fe5d000 -     0x7fff8fe5dfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

    0x7fff8ff5a000 -     0x7fff90023fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices

    0x7fff90281000 -     0x7fff90282fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib

    0x7fff90331000 -     0x7fff90332ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib

    0x7fff90333000 -     0x7fff906aaffa  com.apple.JavaScriptCore (9537 - 9537.74.4) <0942FE6B-3152-30FC-B92A-92A1C29C5295> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore

    0x7fff906ab000 -     0x7fff906bdff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport

    0x7fff906be000 -     0x7fff90724fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi

    0x7fff90725000 -     0x7fff9097eff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security

    0x7fff90bd8000 -     0x7fff90bddff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib

    0x7fff90bde000 -     0x7fff90be6ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP

    0x7fff9134c000 -     0x7fff9134ffff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help

    0x7fff913dd000 -     0x7fff913eafff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing

    0x7fff91429000 -     0x7fff9146bff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib

    0x7fff9149e000 -     0x7fff91748ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox

    0x7fff91749000 -     0x7fff91764ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff919ef000 -     0x7fff91a09fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib

    0x7fff91a0a000 -     0x7fff91a0bfff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent

    0x7fff91a0c000 -     0x7fff91b3bfef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender

    0x7fff91b3c000 -     0x7fff91c20fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x7fff91c5d000 -     0x7fff91c89fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal

    0x7fff91c8a000 -     0x7fff9206bffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib

    0x7fff922b3000 -     0x7fff922faff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib

    0x7fff9230e000 -     0x7fff9230efff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib

    0x7fff9230f000 -     0x7fff92310ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib

    0x7fff923f1000 -     0x7fff92416ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff92467000 -     0x7fff92471ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement

    0x7fff924e6000 -     0x7fff924e9fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC

    0x7fff92503000 -     0x7fff92a73fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC

    0x7fff92ad1000 -     0x7fff92ae4ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer

    0x7fff92ae5000 -     0x7fff92aeafff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib

    0x7fff92aeb000 -     0x7fff92b14ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib

    0x7fff92b15000 -     0x7fff92b50fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom

    0x7fff92b51000 -     0x7fff92b63fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture

    0x7fff92bbc000 -     0x7fff92bc9ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib

    0x7fff92bdc000 -     0x7fff92be9ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib

    0x7fff92bea000 -     0x7fff92c19fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols

    0x7fff92c1a000 -     0x7fff92c75ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE

    0x7fff92c76000 -     0x7fff92ed7fff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit

    0x7fff92ed8000 -     0x7fff92ee4ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

    0x7fff930a4000 -     0x7fff930a4fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

    0x7fff930b3000 -     0x7fff930f8ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices

    0x7fff930f9000 -     0x7fff93194fff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit

    0x7fff93195000 -     0x7fff931a1ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression

    0x7fff931d8000 -     0x7fff931dbff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib

    0x7fff933cd000 -     0x7fff933cffff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper

    0x7fff93401000 -     0x7fff9346efff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit

    0x7fff9347c000 -     0x7fff9374cffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage

    0x7fff93884000 -     0x7fff938d1fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

    0x7fff93cb5000 -     0x7fff93cb5fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

    0x7fff93cfd000 -     0x7fff93d08fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib

    0x7fff93dc9000 -     0x7fff93deeff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary

    0x7fff93def000 -     0x7fff93e53fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore

    0x7fff93e54000 -     0x7fff93e54ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib

    0x7fff93e55000 -     0x7fff93e84ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS

    0x7fff93e8f000 -     0x7fff93ef2ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

    0x7fff93f02000 -     0x7fff93f06ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib

    0x7fff942f0000 -     0x7fff942fdff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian

    0x7fff942fe000 -     0x7fff94356ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication

External Modification Summary:

  Calls made by other processes targeting this process:

    task_for_pid: 1

    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: 96958

    thread_create: 1

    thread_set_state: 0

VM Region Summary:

ReadOnly portion of Libraries: Total=206.7M resident=91.3M(44%) swapped_out_or_unallocated=115.4M(56%)

Writable regions: Total=98.4M written=1424K(1%) resident=1856K(2%) swapped_out=0K(0%) unallocated=96.5M(98%)

REGION TYPE                      VIRTUAL

===========                      =======

CG shared images                    140K

Kernel Alloc Once                     4K

MALLOC                             87.4M

MALLOC (admin)                       32K

STACK GUARD                        56.0M

Stack                              9824K

VM_ALLOCATE                         348K

__DATA                             25.8M

__IMAGE                             528K

__LINKEDIT                         65.7M

__TEXT                            141.1M

__UNICODE                           544K

mapped file                        25.8M

shared memory                         4K

===========                      =======

TOTAL                             412.9M

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines