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

Script - Create a small circle at the corner of the artboard

Community Beginner ,
Dec 16, 2015 Dec 16, 2015

Can someone help me or guide me to the right direction of how to do this?

Basically, this is what I want the script to do

1. Make artboard the size of my selected artwork + 1" offset

2. Create a circle at each of the corner of the artboard

I figured out the script for #1 but I can't find figure out #2. Could anyone help?

Thanks in advance

TOPICS
Scripting
5.7K
Translate
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
Adobe
Valorous Hero ,
Dec 16, 2015 Dec 16, 2015

Wherever you want to put a circle, use the document.pathItems.ellipse() function. Into this function you pass 4 numbers separated by commas, the 1st 2 numbers are the top and the left coordinates, while the next 2 are width and height, respectively.

One such examples is:
var doc = app.activeDocument;

var newCircle = doc.pathItems.ellipse(0,0,10,10);

It creates a 10-diameter circle with the top/left of its bounding box at 0,0

For me it produced the following result:

2015-12-16 16_12_03-.png

Translate
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 Beginner ,
Dec 16, 2015 Dec 16, 2015

‌i just figured out that part but now how do I make it align to top right based on my artboard size?

Translate
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
Valorous Hero ,
Dec 16, 2015 Dec 16, 2015

Okay, to make the circle around corners of your artboard, you have to get into the artboardRect property of the given artboard.

This code will get your active artboard's rectangle bounding box, its artboardRect, and stick the circle so it's top-left coordinate is at the top-right coordinate of the artboard. To put the circle so it's center is at the coordinate vs the top/left, the top/left parameters for the ellipse command have to be offset with half the width & height of the circle.

    var doc = app.activeDocument;

    var activeArtboard = doc.artboards[doc.artboards.getActiveArtboardIndex()];

    var artboardTop = activeArtboard.artboardRect[1];

    var artboardRight = activeArtboard.artboardRect[2];

    var newCircle = doc.pathItems.ellipse(artboardTop, artboardRight, 10, 10);

2015-12-16 16_40_06-.png

Translate
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
Valorous Hero ,
Dec 16, 2015 Dec 16, 2015

By the way, it may be a little confusing at first, how the visibleBounds, geometricBounds and artboardRect follow this convention: [left, top, right, bottom], while the parameters for pathItems.ellipse and pathItems.rectangle are (top, left, width, height).

Translate
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 Beginner ,
Dec 16, 2015 Dec 16, 2015

‌Awesome. Thank you so much. I had no experience in scripting prior to this post but google and you helped me understand the coding. a lot better.

Translate
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
Valorous Hero ,
Dec 16, 2015 Dec 16, 2015

Glad to help! Very nice to help someone get started! If all goes well, you will gain great skill and proficiency in the wonderful world of Illustrator scripting. Then, if it really takes off for you, you may notice some small changes in lifestyle such as a shift from relationships with friends and family, to extended scripting sessions in the depths of the night. That's okay, because the great realization that scripting is all, and all that matters, will gradually take over and you will become one with the script, a living extension of the computer, sent to do its bidding. Oh, sorry, got carried away there, in deep thought again.

Well Cheers!

Translate
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 Beginner ,
Dec 17, 2015 Dec 17, 2015

Sorry to bother you again. Can you explain the code I have below, I thought I understood them but I am doing something wrong here

var doc = app.activeDocument; 

// Get the active Artboard index

var activeArtboard = doc.artboards[doc.artboards.getActiveArtboardIndex()];

// Get Artboard Top Left location

var artboardTopLeft = activeArtboard.artboardRect[1];

// Get Artboard Top Right location

var artboardTopRight = activeArtboard.artboardRect[2];

// Get Artboard Bottom Left location

var artboardBottomLeft = activeArtboard.artboardRect[3];

//Get Artboard Bottom Right location

var artboardBottomRight = activeArtboard.artboardRect[4];

// Create a circle and place it Top Leftlocation inside the artboard

var newCircle = doc.pathItems.ellipse(artboardTopLeft, artboardBottomRight-18, 18,18);

// Create a circle and place it Top Right location inside the artboard

var newCircle = doc.pathItems.ellipse(artboardTopLeft, artboardTopRight-18, 18,18);

// Create a circle and place it Bottom Right location inside the artboard

// Create a circle and place it Bottom Left location inside the artboard

Translate
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
Valorous Hero ,
Dec 17, 2015 Dec 17, 2015

The javascript arrays start at number 0, so if you have an array of 4 items, such as the bounds rectangle numbers, they are accessed like so:

var example = [12, 34, 56, 78];

var left = example[0];

var top = example[1];

var right = example[2];

var bottom = example[3];

The very last index of a 4-item array is actually "3" because indexes start at 0, in javascript.

Translate
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 Beginner ,
Dec 17, 2015 Dec 17, 2015

Can you write me an example code for aligning the circle to top right? This is what I have but it's not working

var artboardLeft = activeArtboard.artboardRect[0];

var artboardTop = activeArtboard.artboardRect[1];

var artboardRight = activeArtboard.artboardRect[2];

var artboardBottom = activeArtboard.artboardRect[3];

var newCircle = doc.pathItems.ellipse(artboardLeft, artboardTop, 18,18);

Translate
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
Valorous Hero ,
Dec 17, 2015 Dec 17, 2015

Check this line out:

var newCircle = doc.pathItems.ellipse(artboardTop + 9, artboardRight - 9, 18, 18);

Bonus confusion is how Illustrator's scripting vs UI vertical coordinates work. According to the UI, adding more to a Y coordinate works just like in web design, where the Y values increase from the top to bottom (you start at the top of a web page at 0, and it scrolls down to positive values). Well, this is what the Illustrator UI shows, but in scripting it's opposite, so that instead of subtracting 1/2 the height to get the circle centered vertically on a corner, that Y coordinate has got to be added 1/2 the height to.

Translate
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 Beginner ,
Dec 17, 2015 Dec 17, 2015

Thank you. I got it to work on all 4 corners. Now the Top, Left, Right, Bottom makes more sense than before. I thought the location wrong and how scripting work

Translate
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 Beginner ,
Dec 17, 2015 Dec 17, 2015

I'm not sure if it's my computer or what but I get Illustrator unexpected error and closed when I tried to run the script. It happens very often today compared to no error yesterday...any idea?

Translate
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 ,
Dec 17, 2015 Dec 17, 2015

What did the error message say? Were you running the script from ESTK or through the File>Scripts menu? The script caused illustrator to crash?? Or it caused illustrator to freeze and you had to kill illustrator?

Translate
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 Beginner ,
Dec 17, 2015 Dec 17, 2015

Will,

I run it through the ESTK while developing the script. I haven't tried from the script windows yet. And the script caused to crash, no freezing or killing the app.

Process:               Adobe Illustrator [4061]

Path:                  /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator

Identifier:            com.adobe.illustrator

Version:               19.0.0 (19.0.0)

Code Type:             X86-64 (Native)

Parent Process:        ??? [1]

Responsible:           Adobe Illustrator [4061]

User ID:               501

Date/Time:             2015-12-17 11:36:32.787 -0600

OS Version:            Mac OS X 10.10.4 (14E46)

Report Version:        11

Anonymous UUID:        B137C79E-1D86-B447-0720-73364CE3D05B

Sleep/Wake UUID:       B0D84392-EDB7-4F80-ACE5-3162FF43CF90

Time Awake Since Boot: 110000 seconds

Time Since Wake:       12000 seconds

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)

Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000800000008

VM Regions Near 0x800000008:

    mapped file            0000000263e00000-0000000267365000 [ 53.4M] r--/rwx SM=COW  /System/Library/Fonts/STHeiti Light.ttc

-->

    __TEXT                 0000123400000000-0000123400509000 [ 5156K] r-x/rwx SM=COW  /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver

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

0   ???                           0x0000000800000008 0 + 34359738376

1   com.adobe.AdobeScCore         0x000000010866519e ScCore::XML::~XML() + 126

2   com.adobe.AdobeScCore         0x000000010866538f ScCore::XML::~XML() + 15

3   com.adobe.illustrator.plugins.ScriptingSupport 0x000000011837c3d3 PluginMain + 1495907

4   com.adobe.illustrator.plugins.ScriptingSupport 0x0000000118367b72 PluginMain + 1411842

5   com.adobe.illustrator.plugins.ScriptingSupport 0x000000011837ec42 PluginMain + 1506258

6   com.adobe.AdobeExtendScript   0x00000001078757f1 ScScript::RealEngine::tickWorker(unsigned int) + 129

7   com.adobe.AdobeExtendScript   0x00000001078758a5 ScScript::RealEngine::good() + 53

8   com.adobe.AdobeExtendScript   0x0000000107826edc jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 172

9   com.adobe.AdobeExtendScript   0x0000000107820d2f jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 415

10  com.adobe.AdobeExtendScript   0x000000010784ee75 jsRunner::run(ScScript::ESVariant&) + 117

11  com.adobe.AdobeExtendScript   0x000000010783979d jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 381

12  com.adobe.AdobeExtendScript   0x00000001078729d8 ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 680

13  com.adobe.AdobeExtendScript   0x0000000107874d2a ScScript::RealEngine::eval(ScScript::Script&, ScCore::Variant*, int, int, ScCore::Variant const*) + 474

14  com.adobe.AdobeExtendScript   0x0000000107874ab1 ScScript::RealEngine::eval(ScCore::String const&, ScCore::Variant*, int, int, ScCore::Variant const*, ScCore::String const*, int) + 193

15  com.adobe.AdobeExtendScript   0x0000000107855e9e ScScript::DebugAPI::executeXML(ScCore::XML const&, ScCore::Error&) + 3406

16  com.adobe.illustrator.plugins.ScriptingSupport 0x000000011837fa6a PluginMain + 1509882

17  com.adobe.illustrator.plugins.ScriptingSupport 0x000000011837b1f5 PluginMain + 1491333

18  com.adobe.illustrator.plugins.ScriptingSupport 0x0000000118367b72 PluginMain + 1411842

19  com.adobe.illustrator.plugins.ScriptingSupport 0x0000000118363834 PluginMain + 1394628

20  com.adobe.illustrator.plugins.ScriptingSupport 0x000000011820d809 0x118207000 + 26633

21  com.adobe.illustrator         0x000000010063b7bf boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 1429535

22  com.adobe.dvacore.framework   0x0000000109ffeb9c int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28

23  com.adobe.illustrator         0x0000000100575f62 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 620482

24  com.adobe.dvacore.framework   0x0000000109ffec33 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::function0<void>, bool*) + 99

25  com.adobe.dvacore.framework   0x000000010a000130 void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 160

26  com.adobe.exo.framework       0x000000010b48c310 -[ExoMacApplication idle:] + 112

27  com.apple.Foundation           0x00007fff90c86953 __NSFireTimer + 95

28  com.apple.CoreFoundation       0x00007fff8ca102e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20

29  com.apple.CoreFoundation       0x00007fff8ca0ff73 __CFRunLoopDoTimer + 1059

30  com.apple.CoreFoundation       0x00007fff8ca8353d __CFRunLoopDoTimers + 301

31  com.apple.CoreFoundation       0x00007fff8c9cb608 __CFRunLoopRun + 2024

32  com.apple.CoreFoundation       0x00007fff8c9cabd8 CFRunLoopRunSpecific + 296

33  com.apple.HIToolbox           0x00007fff89b2f56f RunCurrentEventLoopInMode + 235

34  com.apple.HIToolbox           0x00007fff89b2f1ee ReceiveNextEventCommon + 179

35  com.apple.HIToolbox           0x00007fff89b2f12b _BlockUntilNextEventMatchingListInModeWithFilter + 71

36  com.apple.AppKit               0x00007fff866d78ab _DPSNextEvent + 978

37  com.apple.AppKit               0x00007fff866d6e58 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346

38  com.apple.AppKit               0x00007fff866ccaf3 -[NSApplication run] + 594

39  com.adobe.exo.framework       0x000000010b48b078 exo::app::OS_AppBase::RunEventLoop() + 56

40  com.adobe.illustrator         0x0000000100572d45 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 607653

41  com.adobe.illustrator         0x00000001004fca99 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 123641

42  com.adobe.illustrator         0x00000001004ed9ad boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 61965

43  libdyld.dylib                 0x00007fff959aa5c9 start + 1

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

0   libsystem_kernel.dylib         0x00007fff8f90f232 kevent64 + 10

1   libdispatch.dylib             0x00007fff8c7a9a6a _dispatch_mgr_thread + 52

Thread 2:

0   libsystem_kernel.dylib         0x00007fff8f90e136 __psynch_cvwait + 10

1   com.adobe.AGM                 0x0000000102e51886 AGMMessageQueueImpl::Pull() + 68

2   com.adobe.AGM                 0x0000000102e52dc7 AGMWorkQueueTask::operator()() + 73

3   com.adobe.AGM                 0x0000000102e7b6a7 boost::(anonymous namespace)::thread_proxy(void*) + 136

4   libsystem_pthread.dylib       0x00007fff8aaa8268 _pthread_body + 131

5   libsystem_pthread.dylib       0x00007fff8aaa81e5 _pthread_start + 176

6   libsystem_pthread.dylib       0x00007fff8aaa641d thread_start + 13

Thread 3:

0   libsystem_kernel.dylib         0x00007fff8f90e33a __recvfrom + 10

1   VulcanMessage5.dylib           0x00000001230c887d vcfoundation::io::BSDNamedPipe::Read(void*, unsigned long) + 21

2   VulcanMessage5.dylib           0x00000001230c6ae0 vcfoundation::io::BufferedReader::InternalRead(char*, long) + 82

3   VulcanMessage5.dylib           0x00000001230c6a26 vcfoundation::io::BufferedReader::Read(void*, unsigned long) + 50

4   VulcanMessage5.dylib           0x00000001230bf740 vcfoundation::io::IVCChannel::ReadFully(void*, unsigned long) + 46

5   VulcanMessage5.dylib           0x00000001230bfbd0 vcfoundation::io::Serializer::InternalDeserialize() + 30

6   VulcanMessage5.dylib           0x00000001230bfb99 vcfoundation::io::Serializer::Deserialize() + 9

7   VulcanMessage5.dylib           0x00000001230c5712 vcfoundation::ncomm::Connection::ReadIn() + 22

8   VulcanMessage5.dylib           0x00000001230c5439 vcfoundation::ncomm::NCService::ReadResponse(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&, vcfoundation::ncomm::NCService::ConRef&) + 37

9   VulcanMessage5.dylib           0x00000001230c50ba vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&) + 166

10  VulcanMessage5.dylib           0x00000001230c500d vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*) + 29

11  VulcanMessage5.dylib           0x00000001230b2c02 adobe::vulcan::servicemgr::CSIRequest::Execute() + 50

12  VulcanMessage5.dylib           0x00000001230b367d adobe::vulcan::servicemgr::RegisterForEventsRequest::Run() + 995

13  VulcanMessage5.dylib           0x00000001230c62dc vcfoundation::thread::AbstractThread::Run() + 50

14  VulcanMessage5.dylib           0x00000001230c9d19 vcfoundation::thread::Thread::ThreadProc(void*) + 9

15  libsystem_pthread.dylib       0x00007fff8aaa8268 _pthread_body + 131

16  libsystem_pthread.dylib       0x00007fff8aaa81e5 _pthread_start + 176

17  libsystem_pthread.dylib       0x00007fff8aaa641d thread_start + 13

Thread 4:

0   libsystem_kernel.dylib         0x00007fff8f90e48a __semwait_signal + 10

1   libsystem_c.dylib             0x00007fff8e184e50 usleep + 54

2   com.adobe.illustrator.plugins.dBrushTool 0x000000011e6ddba5 PluginMain + 353557

3   libsystem_pthread.dylib       0x00007fff8aaa8268 _pthread_body + 131

4   libsystem_pthread.dylib       0x00007fff8aaa81e5 _pthread_start + 176

5   libsystem_pthread.dylib       0x00007fff8aaa641d thread_start + 13

Thread 5:

0   libsystem_kernel.dylib         0x00007fff8f90951a semaphore_wait_trap + 10

1   com.adobe.illustrator.plugins.dBrushTool 0x000000011e6dffde PluginMain + 362830

Thread 6:

0   libsystem_kernel.dylib         0x00007fff8f90951a semaphore_wait_trap + 10

1   com.adobe.illustrator.plugins.dBrushTool 0x000000011e6dffde PluginMain + 362830

Thread 7:

0   libsystem_kernel.dylib         0x00007fff8f90951a semaphore_wait_trap + 10

1   com.adobe.illustrator.plugins.dBrushTool 0x000000011e6dffde PluginMain + 362830

Thread 8:

0   libsystem_kernel.dylib         0x00007fff8f90951a semaphore_wait_trap + 10

1   com.adobe.illustrator.plugins.dBrushTool 0x000000011e6dffde PluginMain + 362830

Thread 9:

0   libsystem_kernel.dylib         0x00007fff8f9094de mach_msg_trap + 10

1   libsystem_kernel.dylib         0x00007fff8f90864f mach_msg + 55

2   com.apple.CoreFoundation       0x00007fff8c9cbeb4 __CFRunLoopServiceMachPort + 212

3   com.apple.CoreFoundation       0x00007fff8c9cb37b __CFRunLoopRun + 1371

4   com.apple.CoreFoundation       0x00007fff8c9cabd8 CFRunLoopRunSpecific + 296

5   com.apple.AppKit               0x00007fff8679f56b _NSEventThread + 137

6   libsystem_pthread.dylib       0x00007fff8aaa8268 _pthread_body + 131

7   libsystem_pthread.dylib       0x00007fff8aaa81e5 _pthread_start + 176

8   libsystem_pthread.dylib       0x00007fff8aaa641d thread_start + 13

Thread 10:

0   libsystem_kernel.dylib         0x00007fff8f90e48a __semwait_signal + 10

1   com.adobe.illustrator.plugins.ScriptingSupport 0x000000011838c558 PluginMain + 1561832

2   com.adobe.illustrator.plugins.ScriptingSupport 0x00000001183733ac PluginMain + 1459004

3   com.adobe.illustrator.plugins.ScriptingSupport 0x000000011838c0f2 PluginMain + 1560706

4   libsystem_pthread.dylib       0x00007fff8aaa8268 _pthread_body + 131

5   libsystem_pthread.dylib       0x00007fff8aaa81e5 _pthread_start + 176

6   libsystem_pthread.dylib       0x00007fff8aaa641d thread_start + 13

Thread 11:

0   libsystem_kernel.dylib         0x00007fff8f90e94a __workq_kernreturn + 10

1   libsystem_pthread.dylib       0x00007fff8aaa640d start_wqthread + 13

Thread 12:

0   libsystem_kernel.dylib         0x00007fff8f90e94a __workq_kernreturn + 10

1   libsystem_pthread.dylib       0x00007fff8aaa640d start_wqthread + 13

Thread 13:

0   libsystem_kernel.dylib         0x00007fff8f90e94a __workq_kernreturn + 10

1   libsystem_pthread.dylib       0x00007fff8aaa640d start_wqthread + 13

Thread 14:

0   libsystem_kernel.dylib         0x00007fff8f90e94a __workq_kernreturn + 10

1   libsystem_pthread.dylib       0x00007fff8aaa640d start_wqthread + 13

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

  rax: 0x0000000800000008  rbx: 0x000000000000009c  rcx: 0x00000000000b161c  rdx: 0x00000000000b161b

  rdi: 0x00006000018a2408  rsi: 0x0000000000000008  rbp: 0x00007fff5fbfb330  rsp: 0x00007fff5fbfb308

   r8: 0x00000001144452fc   r9: 0x000000010c600000  r10: 0x0000000000000120  r11: 0xffff9f80f78fb770

  r12: 0x000060000000b598  r13: 0x0000000000000018  r14: 0x00006000018a5b28  r15: 0x00000000000004f8

  rip: 0x0000000800000008  rfl: 0x0000000000010297  cr2: 0x0000000800000008

 

Logical CPU:     0

Error Code:      0x00000014

Trap Number:     14

Binary Images:

       0x100000000 -        0x10170dfff +com.adobe.illustrator (19.0.0 - 19.0.0) <BC6FD424-AA87-3F2E-BDB9-95CD3055AF31> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator

       0x101923000 -        0x102668fff +com.adobe.ICUData (4.0 - 3.61) <B9864D01-126E-3C56-B04C-993F9890F6AD> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/ICUData

       0x10267c000 -        0x1026b5fff +com.adobe.pip (7.2.1.3600) <C47C1485-4832-3DFA-9729-528A935CD7C9> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP

       0x1026bf000 -        0x10274cff7 +com.adobe.headlights.LogSessionFramework (7.2.1.3600) <F329BF2F-FD3D-342A-AA38-14922C6C21DC> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession

       0x10278f000 -        0x102792fff +com.adobe.AdobeCrashReporter (7.1 - 7.1.4) <A33546D9-3E26-38A2-88FE-C7C46B4CD989> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter

       0x102799000 -        0x1027b0fff +com.adobe.aifm (aifm version 19.0.0 - 19.0.0.44) <1B306535-3836-3A67-85E6-756BBA485B16> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/aifm.framework/Versions/A/aifm

       0x1027bf000 -        0x1027c0ff7 +com.adobe.MacMemory (MacMemory version 19.0.0 - 19.0.0.44) <7216F124-5C51-39BA-B676-F704FF4DCAA3> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/MacMemory.framework/Versions/A/MacMemory

       0x1027c6000 -        0x102818fff +com.adobe.aiport (aiport version 19.0.0 - 19.0.0.44) <E313F8A5-31FE-33B5-B6DE-DA289E287DAC> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/aiport.framework/Versions/A/aiport

       0x10283c000 -        0x10288ffff +com.adobe.filterport (filterport version 19.0.0 - 19.0.0.44) <21D0C29B-C83F-3D5D-8DCE-45FE0F4FE867> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/filterport.framework/Versions/A/filterport

       0x1028b7000 -        0x1028b7fff +com.adobe.SPBasic (SPBasic version 19.0.0 - 19.0.0.44) <D26364E8-9598-3846-BFD5-2833ED3BD4FA> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic

       0x1028bc000 -        0x102a0aff7 +com.adobe.ACE (AdobeACE 2.20.02.34494 - 2.20.02.34494) <DCD064B8-A43A-3D41-B499-15E602F69CDA> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE

       0x102a1e000 -        0x1032b6fff +com.adobe.AGM (AdobeAGM 4.30.51.1 - 4.30.51.1) <C754B420-89CA-36E7-B50C-20336F6491D5> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM

       0x1038f9000 -        0x103936ff7 +com.adobe.ARE (AdobeARE 1.5.02.34494 - 1.5.02.34494) <3623F0E2-8311-359D-98E8-7EB1A2FFF181> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE

       0x10393e000 -        0x103a3afff +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.34320 - 3.8.0.34320) <AFDCC2CF-EF73-323E-A2FA-3034F26F97B9> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore

       0x103ae2000 -        0x103b01fff +com.adobe.BIB (AdobeBIB 1.2.03.34494 - 1.2.03.34494) <644F8DE0-3E61-374D-B17D-44ED3BD10D60> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB

       0x103b09000 -        0x103b2fff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <3318FE3E-8AB8-3821-A1FB-8A8D62C20303> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils

       0x103b37000 -        0x103e5cfff +com.adobe.CoolType (AdobeCoolType 5.15.00.34494 - 5.15.00.34494) <83E40C9D-DD09-3FEF-B984-AB834D72C32A> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType

       0x103ea4000 -        0x10425bfff +com.adobe.MPS (AdobeMPS 5.8.1.34307 - 5.8.1.34307) <CD7908A7-8CB5-3AA3-8AE7-87C7F20D282D> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS

       0x1042cc000 -        0x1067cef3f +com.adobe.psl (AdobePSL 15.1.0.34595 - 15.1.0.34595) <24409AC3-B1A4-3F72-9FEA-977B07E29B16> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL

       0x106c69000 -        0x106d87fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.6 -c 67 - 79.157747) <E20FA9C9-CEFC-3D6F-A1F8-E6D6629151CE> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP

       0x106e76000 -        0x106fc8ff7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 146 - 79.157747) <05DAE5E2-BCF5-376D-900C-546BABAB1B8F> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles

       0x107093000 -        0x10713cff7 +com.adobe.ICUConverter (4.0 - 3.61) <E20E390A-9BAF-3454-BA16-7B9CCD4CA8F0> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/ICUConverter

       0x107165000 -        0x1072a0fff +com.adobe.ICUInternationalization (4.0 - 3.61) <CEAE369B-B601-30D5-9563-6C2AB781AF27> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/ICUInternationalization

       0x107328000 -        0x10742bff7 +com.adobe.ICUUnicode (4.0 - 3.61) <CE487901-E84A-3E54-95AB-91F2EAF57F6A> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/ICUUnicode

       0x107476000 -        0x1075a9fff +com.winsoft.wrservices (WRServices 10.0.0 - 10.0.0) <BDACB6B1-F867-3FB2-84F7-3020326D24CF> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices

       0x107608000 -        0x10776cff7 +com.adobe.linguistic.LinguisticManager (9.0.0 - 21429) <F35C19E3-EADE-3DCD-A487-394A474895CE> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic

       0x1077bd000 -        0x1077c5fff +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <8C2FE701-EAA3-327C-BBDE-82C4991A08CB> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit

       0x1077cf000 -        0x1077f3ff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.34320 - 3.8.0.34320) <674F1792-D790-3E12-8C0F-85CAF9D848B1> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat

       0x107817000 -        0x1078d6fff +com.adobe.AdobeExtendScript (ExtendScript 4.5.6 - 4.5.6.1) <0734136F-7F35-3A43-9198-2F8677864F6A> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript

       0x107924000 -        0x1079ddff7 +com.adobe.JP2K (1.2.2 - 1.2.2.34491) <574A97AF-0EA2-3FB9-BE6B-7E02C76EC6F2> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K

       0x107a23000 -        0x107c2bfff +com.adobe.owl (AdobeOwl version 5.2.6 - 5.2.6) <FE81D017-A16A-3B11-942D-52026E43486F> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl

       0x107c71000 -        0x10840afff +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 15.0.0.34348) <4D649496-C10E-351F-B665-ABB0BD0C9FC3> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL

       0x1084c7000 -        0x1085ccfff +com.adobe.PDFPort (AdobePDFPort 2.1.0.34494 - 2.1.0.34494) <B722768C-5135-32EC-9B39-1545486E4F78> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort

       0x1085df000 -        0x108608ff7 +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <E07D101E-E47A-392A-8A44-005B49393DEC> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings

       0x108620000 -        0x1086d4ff7 +com.adobe.AdobeScCore (ScCore 4.5.6 - 4.5.6.1) <7EA9803D-BFE0-3AC5-8FC4-48168187A833> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore

       0x108718000 -        0x1087d6ff7 +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <AD9AC410-9573-3369-B97E-55EFB3D76257> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport

       0x1087f9000 -        0x108af8fff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <BADFF5E9-09C9-3BDF-954A-1AC75D3A51F1> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE

       0x108bbd000 -        0x108bd9fff +com.adobe.ahclientframework (2.0.0.1 - 2.0.0.1) <075BD455-9D2E-3B8A-8C83-8B40D3059A55> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient

       0x108be5000 -        0x108bfefff  com.apple.carbonframeworktemplate (1.0 - 1.0) <514FC1EB-29FA-3D61-9D43-A7CA86E83100> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid

       0x108c05000 -        0x108d06fff +com.adobe.amtlib (9.0.0.21 - 9.0.0.21) <BAE71CEB-B622-38DB-A0A2-796C0BEB4E03> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib

       0x108d19000 -        0x108d1efff +com.adobe.boost_date_time.framework (8.0.0 - 8.0.0.0) <7AE01244-8ACA-37C2-B644-07662ABA9D4D> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time

       0x108d30000 -        0x108d3eff7 +com.adobe.boost_filesystem.framework (8.0.0 - 8.0.0.0) <9316FF66-781C-3008-BAF1-5D2A652CABDD> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem

       0x108d52000 -        0x108e02fff +com.adobe.boost_regex.framework (8.0.0 - 8.0.0.0) <4D13B909-571C-3A88-B2F0-E77F5076C9C6> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex

       0x108e81000 -        0x108edbff7 +com.adobe.boost_serialization.framework (8.0.0 - 8.0.0.0) <9DADD70A-699C-39B7-85FA-C6B78499EBCB> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serialization

       0x108fca000 -        0x108fd6ff7 +com.adobe.boost_signals.framework (8.0.0 - 8.0.0.0) <05EA426D-F2A4-3167-97A1-9434D10FC486> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals

       0x108fee000 -        0x108fefff7 +com.adobe.boost_system.framework (8.0.0 - 8.0.0.0) <D521DFB9-6C8A-3ABC-A271-87BA32C67348> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system

       0x108ff7000 -        0x109006ff7 +com.adobe.boost_threads.framework (8.0.0 - 8.0.0.0) <6383427F-7ACB-3C20-ACAA-3ECED4B701F1> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads

       0x109022000 -        0x1093beff7 +com.adobe.dvaadameve.framework (8.0.0 - 8.0.0.0) <CA8B50C0-9E1C-340C-B569-C201DFF2ADE1> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve

       0x109a3b000 -        0x109c66fff +com.adobe.dvaai.framework (8.0.0 - 8.0.0.0) <CAEBF2E6-1252-3752-AF15-6F2923C339CF> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai

       0x109fcc000 -        0x10a2a2fff +com.adobe.dvacore.framework (8.0.0 - 8.0.0.0) <37C426EF-2F4A-389A-BCA2-E8C1A301F6E6> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore

       0x10a4fd000 -        0x10aa62fff +com.adobe.dvaui.framework (8.0.0 - 8.0.0.0) <CB71B750-DC61-3938-B6FC-55AFD403CAF8> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui

       0x10b21e000 -        0x10b303ff7 +com.adobe.dvaworkspace.framework (8.0.0 - 8.0.0.0) <DA8837C4-29C7-31CF-8FBF-E19174360812> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace

       0x10b482000 -        0x10b55aff7 +com.adobe.exo.framework (8.0.0 - 8.0.0.0) <59B9577E-CBA5-3899-8030-B8774B9F4FA4> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo

       0x10b6d6000 -        0x10b6fdff7 +com.adobe.dvaflashview.framework (8.0.0 - 8.0.0.0) <EDEE1A3B-46DA-3150-A584-517084648D45> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview

       0x10b72c000 -        0x10b743ff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL

       0x10b756000 -        0x10b786fef +libtbb.dylib (0) <D41FA1F0-4921-308A-93DF-4D16F8913472> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib

       0x10b7a2000 -        0x10b7c7fff +libtbbmalloc.dylib (0) <60EF4F46-298B-38B6-A6CD-9B168072EAB7> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib

       0x10b7f1000 -        0x10b7f5fff  com.apple.agl (3.3.0 - AGL-3.3.0) <4E8F579B-A2E2-3A27-96D7-02A9465A78D8> /System/Library/Frameworks/AGL.framework/Versions/A/AGL

       0x10b7fc000 -        0x10b944fff +com.adobe.AIDE (1.5.0 - 1.5.0.34359) <A2CAF6C5-8C39-3019-9899-7C966BD74F5F> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AIDE.framework/Versions/A/AIDE

       0x10b9b5000 -        0x10b9b9ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape

       0x10b9c0000 -        0x10bb1aff7 +com.adobe.dvascriptui.framework (7.0.6 - 7.0.6.0) <D12016D2-64EC-31EB-BC26-3C178829A0CC> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui

       0x10bd69000 -        0x10be44fff +com.adobe.dvametadata.framework (8.0.0 - 8.0.0.0) <7040EF36-A6C1-378E-B412-B5547B384A0F> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvametadata.framework/Versions/A/dvametadata

       0x10bf1c000 -        0x10c03eff7 +com.adobe.dvametadataUI.framework (8.0.0 - 8.0.0.0) <ACD11745-002D-3533-BE8F-6145C70A9D0A> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvametadataUI.framework/Versions/A/dvametadataUI

       0x10c18e000 -        0x10c272fff +com.adobe.dvaeve.framework (8.0.0 - 8.0.0.0) <70E8286F-9D55-35F4-8999-E0CFBDFCD2E3> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvaeve.framework/Versions/A/dvaeve

       0x10c3ae000 -        0x10c410ff7 +com.adobe.dvatemporalxmp.framework (8.0.0 - 8.0.0.0) <3F77834D-4269-348B-A7D4-49D8C2B602C2> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvatemporalxmp.framework/Versions/A/dvatemporalxmp

       0x10c44c000 -        0x10c485ff7 +com.adobe.dvamediatypes.framework (8.0.0 - 8.0.0.0) <1463E3EE-711F-3C8E-9D06-8A7905BC6E65> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/dvamediatypes.framework/Versions/A/dvamediatypes

       0x10c72e000 -        0x10c730ff7  com.apple.textencoding.unicode (2.8 - 2.8) <A2CAC6A6-82CE-3929-94F8-538375EC3DF9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings

       0x113e3a000 -        0x113e7aff7 +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 9.0.0.3 - 9.0.0.3) <2F5B40E6-812C-34E0-A8AC-02F55D770D49> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications

       0x114003000 -        0x114008ff7  libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib

       0x11439b000 -        0x1143a0fff +com.adobe.illustrator.plugins.FlattenTransparency ( Flatten Transparency version 19.0.0 - 19.0.0) <2BF4D9B6-80B4-3FB5-9841-F93A2A0C8A62> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/FlattenTransparency.aip/Contents/MacOS/FlattenTransparency

       0x114bd9000 -        0x114c40ff7 +com.adobe.illustrator.plugins.PhotoshopAdapter (Photoshop Adapter version 19.0.0 - 19.0.0) <F823F9E4-175D-3B3B-B71F-0BC150D0B0E4> /Applications/Adobe Illustrator CC 2015/*/PhotoshopAdapter

       0x114c4c000 -        0x114c54ff7 +com.adobe.illustrator.plugins.Action (Action version 19.0.0 - 19.0.0) <2C690DC3-7130-33DD-B7DE-86A97B84115D> /Applications/Adobe Illustrator CC 2015/*/Action

       0x114c5a000 -        0x114c64ff7 +com.adobe.illustrator.plugins.FrameworkS (Framework Server version 19.0.0 - 19.0.0) <DAB78E79-6EEC-3032-9506-6B117E61875F> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/FrameworkS.aip/Contents/MacOS/FrameworkS

       0x114c69000 -        0x114c71ff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 19.0.0 - 19.0.0) <D5769813-41FC-3C96-A8C9-95BCE0E0A085> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters

       0x114c76000 -        0x114c7bff7 +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 19.0.0 - 19.0.0) <72C32160-FB5B-3B3B-924D-57870E48D2A9> /Applications/Adobe Illustrator CC 2015/*/ToolSelector

       0x114dc0000 -        0x114dd8fff +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 19.0.0 - 19.0.0) <B959A392-EE75-35F6-A445-6335AED95F6A> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite

       0x114de2000 -        0x114df8ff7 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 19.0.0 - 19.0.0) <490899EB-A6AD-3CA9-9DB2-4106EF92EC76> /Applications/Adobe Illustrator CC 2015/*/BrushManager

       0x114e2b000 -        0x114e2bff5 +cl_kernels (???) <ECDCCD89-A243-4A14-9C14-8BC63B1C1458> cl_kernels

       0x114ffc000 -        0x115078ff7 +com.adobe.illustrator.plugins.UserInterface (User Interface version 19.0.0 - 19.0.0) <54AEBC31-EFCA-36A1-90CE-1A144DCEDF64> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/UserInterface.aip/Contents/MacOS/UserInterface

       0x1150f5000 -        0x1150f8ff7 +com.adobe.illustrator.plugins.Geometry ( Geometry Suite version 19.0.0 - 19.0.0) <4EC7EC3D-EBE1-3740-B6F7-FD2FAF4E0EC3> /Applications/Adobe Illustrator CC 2015/*/Geometry

       0x115126000 -        0x115126fef +cl_kernels (???) <1877305C-A8FF-4FB1-99B3-3FCC585A7A45> cl_kernels

       0x11514c000 -        0x1151d5ff7 +com.adobe.illustrator.plugins.CurveFittingSuite ( Pencil Tool version 19.0.0 - 19.0.0) <31676CE8-9BF6-3AAE-A1CA-12D479DA1F8A> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/CurveFittingSuite.aip/Contents/MacOS/CurveFittingSuite

       0x1151df000 -        0x115242ff7 +com.adobe.illustrator.plugins.PDFSuite (PDF Suite version 19.0.0 - 19.0.0) <CBF99161-7D40-36AD-9B1D-4D315BC3BBD3> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/PDFSuite.aip/Contents/MacOS/PDFSuite

       0x115250000 -        0x115251fff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 19.0.0 - 19.0.0) <28E5A8C9-2FA0-3723-B829-A873E49E610D> /Applications/Adobe Illustrator CC 2015/*/MPSCommon

       0x11527f000 -        0x1152a2ff7 +com.adobe.illustrator.plugins.Rasterize (Rasterize version 19.0.0 - 19.0.0) <D0A009F3-34C8-38FB-8798-157D2FC0678C> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize

       0x1152aa000 -        0x1153a5fff +com.adobe.illustrator.plugins.BeautifulStrokes (Beautiful Strokes Suite version 19.0.0 - 19.0.0) <0F34F898-096B-38F7-A9C4-454EBA3ECB5A> /Applications/Adobe Illustrator CC 2015/*/BeautifulStrokes

       0x1153af000 -        0x1153ceff7 +com.adobe.illustrator.plugins.ControlPanel (ControlPalette version 19.0.0 - 19.0.0) <5F803168-2836-3B4A-97D5-14B6162A25AA> /Applications/Adobe Illustrator CC 2015/*/ControlPanel

       0x1153d8000 -        0x1153d9fff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 19.0.0 - 19.0.0) <5AE67A0A-0B91-36F1-BB64-7C2BC4DB9BDB> /Applications/Adobe Illustrator CC 2015/*/FlattenS

       0x115407000 -        0x115517fff +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 19.0.0 - 19.0.0) <C04CC227-C1D6-3722-8BE6-7838F039F0A9> /Applications/Adobe Illustrator CC 2015/*/ColorHarmony

       0x115566000 -        0x11559bfff +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 19.0.0 - 19.0.0) <851C1AB3-E2CB-340D-B615-4CEEBC2317A9> /Applications/Adobe Illustrator CC 2015/*/KinsokuDlg

       0x1155bd000 -        0x1156b1fff +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 19.0.0 - 19.0.0) <C25CC462-0AAC-37D9-8594-2C49BB03654A> /Applications/Adobe Illustrator CC 2015/*/PaintStyle

       0x115703000 -        0x115789fff +com.adobe.illustrator.plugins.Perspective (Perspective version 19.0.0 - 19.0.0) <B8D1AA4A-DEBE-3BE1-A5E6-3D61B77FCB8A> /Applications/Adobe Illustrator CC 2015/*/Perspective

       0x115793000 -        0x1157b3fff +com.adobe.illustrator.plugins.VariablesPalette (Variables Palette version 19.0.0 - 19.0.0) <3B00F045-95AE-3634-8F44-4999C02BC8B4> /Applications/Adobe Illustrator CC 2015/*/VariablesPalette

       0x1157ba000 -        0x1157d0ff7 +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 19.0.0 - 19.0.0) <0E120C37-FCC3-3D7A-A94F-40BBE4433134> /Applications/Adobe Illustrator CC 2015/*/TextWrapDlg

       0x1157e6000 -        0x1157f1ff7 +com.adobe.illustrator.plugins.DiffusionRasterSuite (DiffusionRaster version 19.0.0 - 19.0.0) <1FAD3192-5CA7-38CD-9D8D-B438BFCE3A31> /Applications/Adobe Illustrator CC 2015/*/DiffusionRasterSuite

       0x1157f6000 -        0x1157fafff +com.adobe.illustrator.plugins.Distort (Free Distort version 19.0.0 - 19.0.0) <1A89F86D-594C-39A2-A1EF-A76693D3B9A1> /Applications/Adobe Illustrator CC 2015/*/Distort

       0x116000000 -        0x1161b5ff7 +com.adobe.illustrator.plugins.PlanetX (Live Paint version 19.0.0 - 19.0.0) <C18C9746-E44E-3351-A24F-82820E9E9928> /Applications/Adobe Illustrator CC 2015/*/PlanetX

       0x1161c3000 -        0x116259fff +com.adobe.adobe_caps (adobe_caps 9.0.0.5 - 9.0.0.5) <71BDFB88-91D4-35B1-9860-82F31ACBDE38> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps

       0x116267000 -        0x116278fff +com.adobe.illustrator.plugins.ShapeSuite (Shape Construction Suite version 19.0.0 - 19.0.0) <4439D9B3-6B08-36CE-A0D2-8099830130B7> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/ShapeSuite.aip/Contents/MacOS/ShapeSuite

       0x11627e000 -        0x116281b95 +libConfigurer.dylib (4) <2FB64DEF-6436-3FAE-8126-3AC5EBAD1B93> /Applications/Adobe Illustrator CC 2015/*/libConfigurer.dylib

       0x118207000 -        0x11848afff +com.adobe.illustrator.plugins.ScriptingSupport (Scripting Support version 19.0.0 - 19.0.0) <CA4D34CD-D76A-384F-BFCE-90D70AC5A971> /Applications/Adobe Illustrator CC 2015/*/ScriptingSupport

       0x118535000 -        0x118611fff +com.adobe.AXEXSLT (AdobeAXSLE 3.8.0.34320 - 3.8.0.34320) <DB2B9E7A-210B-3981-BBD7-2CE7B5827CC8> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE

       0x1186a4000 -        0x11871fff7 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 19.0.0 - 19.0.0) <D41110FE-7BCB-365D-ABF9-A36CAAFEDC25> /Applications/Adobe Illustrator CC 2015/*/SymbolPalette

       0x118749000 -        0x11877cff7 +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 19.0.0 - 19.0.0) <15E16995-498A-3EA9-BBF7-0ACDC06F1723> /Applications/Adobe Illustrator CC 2015/*/Mojikumi

       0x118799000 -        0x1187b1fff +com.adobe.illustrator.plugins.DxfDwgUI (DxfDwgUI version 19.0.0 - 19.0.0) <68231EF3-A8D8-376A-B85A-9C80EC23C667> /Applications/Adobe Illustrator CC 2015/*/DxfDwgUI

       0x1187ca000 -        0x1187d4ff7 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 19.0.0 - 19.0.0) <9F6A7886-3A7D-3769-A619-265AF545B9CE> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS

       0x1187d9000 -        0x1187e9ff7 +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 19.0.0 - 19.0.0) <CCCF5835-979F-3AAA-874D-D3192560587F> /Applications/Adobe Illustrator CC 2015/*/AssetMgmt

       0x1187ef000 -        0x1187f7ff7 +com.adobe.illustrator.plugins.Colors (Colors version 19.0.0 - 19.0.0) <EB5B3184-8BEE-3D7D-BA7A-1CBA4E10A241> /Applications/Adobe Illustrator CC 2015/*/Colors

       0x11bffc000 -        0x11c14dfff +com.adobe.illustrator.plugins.SwatchLibs (Swatch Libraries version 19.0.0 - 19.0.0) <C472DB23-294B-3B2B-A246-E201222869C9> /Applications/Adobe Illustrator CC 2015/*/SwatchLibs

       0x11c19a000 -        0x11c4aefff +com.adobe.illustrator.plugins.Vectorize (TracingSuite version 19.0.0 - 19.0.0) <D1A20E8C-3E80-3AD2-937F-1126AFCEDB14> /Applications/Adobe Illustrator CC 2015/*/Vectorize

       0x11c4c5000 -        0x11ddc7ff7 +com.adobe.illustrator.plugins.DxfDwg (DxfDwg version 19.0.0 - 19.0.0) <62A767EA-ED6A-3581-99F3-ADD8EEFAD580> /Applications/Adobe Illustrator CC 2015/*/DxfDwg

       0x11df1b000 -        0x11e024fff +com.adobe.illustrator.plugins.svgFileFormat ( SVG Format version 19.0.0 - 19.0.0) <45FA912B-E2AF-37CF-8E2E-9AA785FC9185> /Applications/Adobe Illustrator CC 2015/*/svgFileFormat

       0x11e03c000 -        0x11e097fff +com.adobe.illustrator.plugins.Deform (Envelope and Warp version 19.0.0 - 19.0.0) <573A3B1C-034A-359A-99CE-597FDBD88880> /Applications/Adobe Illustrator CC 2015/*/Deform

       0x11e0a1000 -        0x11e0d5fff +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 19.0.0 - 19.0.0) <94618158-FFB1-3DD6-BD59-58261A6CD503> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/slicingAttributes.aip/Contents/MacOS/slicingAttributes

       0x11e0dd000 -        0x11e112fff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 19.0.0 - 19.0.0) <2E67419F-F595-37DA-AD98-51BED753D003> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/PathfinderS.aip/Contents/MacOS/PathfinderS

       0x11e11a000 -        0x11e141ff7 +com.adobe.illustrator.plugins.DocInfo (Document Info version 19.0.0 - 19.0.0) <D477CC72-6BAF-3150-B439-252D6CB7D713> /Applications/Adobe Illustrator CC 2015/*/DocInfo

       0x11e14c000 -        0x11e1a9ff7 +com.adobe.illustrator.plugins.LinkPalette (Links Palette version 19.0.0 - 19.0.0) <52FE9691-48E1-36A2-9FAB-FCB0AC116864> /Applications/Adobe Illustrator CC 2015/*/LinkPalette

       0x11e1d5000 -        0x11e21bff7 +com.adobe.illustrator.plugins.Snapomatic (Snap version 19.0.0 - 19.0.0) <390EA908-009B-30A4-A84C-D221AE5563DB> /Applications/Adobe Illustrator CC 2015/*/Snapomatic

       0x11e225000 -        0x11e232fff +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 19.0.0 - 19.0.0) <5D607067-82DD-3CD8-8C36-CD387507D288> /Applications/Adobe Illustrator CC 2015/*/DropShadow

       0x11e238000 -        0x11e23cff7 +com.adobe.illustrator.plugins.TrimMark (Crop Marks version 19.0.0 - 19.0.0) <87BAF9B1-53FE-3DAC-8906-0F1D025C5D31> /Applications/Adobe Illustrator CC 2015/*/TrimMark

       0x11e241000 -        0x11e26bfff +com.adobe.illustrator.plugins.EyeBucketTool (Eye Bucket Tool version 19.0.0 - 19.0.0) <550183EB-0C0F-31FC-BAF3-6817B5184AF1> /Applications/Adobe Illustrator CC 2015/*/EyeBucketTool

       0x11e283000 -        0x11e287ff7 +com.adobe.illustrator.plugins.TwirlTool (Twist Tool version 19.0.0 - 19.0.0) <1221CE38-AFED-3877-96AE-447A9407D96D> /Applications/Adobe Illustrator CC 2015/*/TwirlTool

       0x11e28d000 -        0x11e3a6fff +com.adobe.illustrator.plugins.SketchingTools (ShapeToolUI version 19.0.0 - 19.0.0) <D54600C4-8C04-31B3-9BE4-FB3FB5DEC8F4> /Applications/Adobe Illustrator CC 2015/*/SketchingTools

       0x11e3d5000 -        0x11e3e4ff7 +com.adobe.illustrator.plugins.Simplify (Simplify version 19.0.0 - 19.0.0) <E36BE2CE-4555-30D7-9537-34810DA681EC> /Applications/Adobe Illustrator CC 2015/*/Simplify

       0x11e3f9000 -        0x11e423fff +com.adobe.illustrator.plugins.SimpleTools (Segment Tools version 19.0.0 - 19.0.0) <02DB94C8-84CD-36A5-AA47-E3F0771677BE> /Applications/Adobe Illustrator CC 2015/*/SimpleTools

       0x11e43e000 -        0x11e4aaff7 +com.adobe.illustrator.plugins.ShapeTool (ShapeTool version 19.0.0 - 19.0.0) <AF64183D-E846-32A2-846D-23C85556BD97> /Applications/Adobe Illustrator CC 2015/*/ShapeTool

       0x11e4db000 -        0x11e4fafff +com.adobe.illustrator.plugins.SelHat (Advanced Select version 19.0.0 - 19.0.0) <B58EA677-6CAC-3A8E-B09A-37E46C85A9B1> /Applications/Adobe Illustrator CC 2015/*/SelHat

       0x11e511000 -        0x11e530ff7 +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 19.0.0 - 19.0.0) <542DE07B-37FC-397A-8416-DF8706024308> /Applications/Adobe Illustrator CC 2015/*/ScatterBrushTool

       0x11e537000 -        0x11e55cfff +com.adobe.illustrator.plugins.ParticleSystem (Symbolism version 19.0.0 - 19.0.0) <C747E524-2074-3E55-A537-DA1A0C669467> /Applications/Adobe Illustrator CC 2015/*/ParticleSystem

       0x11e564000 -        0x11e57efff +com.adobe.illustrator.plugins.MagicWand (Magic Wand version 19.0.0 - 19.0.0) <64A7C227-1DB3-3DC6-9B20-5E46A1EEE3FE> /Applications/Adobe Illustrator CC 2015/*/MagicWand

       0x11e587000 -        0x11e59fff7 +com.adobe.illustrator.plugins.LiquifyTool (Liquify version 19.0.0 - 19.0.0) <8388C290-7747-3CE5-A3D3-404FA923BDCB> /Applications/Adobe Illustrator CC 2015/*/LiquifyTool

       0x11e5a5000 -        0x11e5b0ff7 +com.adobe.illustrator.plugins.Lasso (Lasso version 19.0.0 - 19.0.0) <2FC914BA-0BDA-321D-B368-4E6BDA7E6E4F> /Applications/Adobe Illustrator CC 2015/*/Lasso

       0x11e5b7000 -        0x11e5befff +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 19.0.0 - 19.0.0) <CC58E667-8D5E-3672-9073-C93386A350C5> /Applications/Adobe Illustrator CC 2015/*/KnifeTool

       0x11e5c4000 -        0x11e5e0fff +com.adobe.illustrator.plugins.GlobAdjTool (Reshape Tool version 19.0.0 - 19.0.0) <5B464839-0D3F-36A7-99EF-84D81C17698D> /Applications/Adobe Illustrator CC 2015/*/GlobAdjTool

       0x11e5e6000 -        0x11e5f8fff +com.adobe.illustrator.plugins.Flare (Flare version 19.0.0 - 19.0.0) <3A40BDDB-ECBC-3118-BEF9-E12A0204BBAD> /Applications/Adobe Illustrator CC 2015/*/Flare

       0x11e600000 -        0x11e661ff7 +com.adobe.illustrator.plugins.EraserTool (EraserTool version 19.0.0 - 19.0.0) <2281B1D8-8B98-3748-8AB7-205CBC39FFCF> /Applications/Adobe Illustrator CC 2015/*/EraserTool

       0x11e686000 -        0x11e700fff +com.adobe.illustrator.plugins.dBrushTool (Bristle Brush Tool version 19.0.0 - 19.0.0) <064880EC-0BD3-3AAD-A365-C9B4F6FAF9AC> /Applications/Adobe Illustrator CC 2015/*/dBrushTool

       0x11e712000 -        0x11e72fff7 +com.adobe.illustrator.plugins.CurvatureTool (NewPlugin version 19.0.0 - 19.0.0) <E56F2EF6-3915-3D7A-88F5-770219EB38AA> /Applications/Adobe Illustrator CC 2015/*/CurvatureTool

       0x11e735000 -        0x11e77ffff +com.adobe.illustrator.plugins.CropAreaTool (CropAreaTool version 19.0.0 - 19.0.0) <D623C5CB-85E4-3109-803F-E4E137542342> /Applications/Adobe Illustrator CC 2015/*/CropAreaTool

       0x11e79b000 -        0x11e7e9fff +com.adobe.illustrator.plugins.CalligraphicBrushTool (Calligraphic Brush Tool version 19.0.0 - 19.0.0) <79CAD7BC-F3BC-3132-BAEE-D3453EBAEA10> /Applications/Adobe Illustrator CC 2015/*/CalligraphicBrushTool

       0x11e80a000 -        0x121353fff +com.hotdoor.plugins.cadtools (CADtools 9.1.0 for Illustrator CC 2015 - 9.1.0) <EEFA8FDF-1E66-36FD-A887-BAE9086505E1> /Applications/Adobe Illustrator CC 2015/*/CADtools

       0x121850000 -        0x121877ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 19.0.0 - 19.0.0) <873DAFE0-C2C8-34D0-8FD3-83CBACF5118C> /Applications/Adobe Illustrator CC 2015/*/BoundingBox

       0x121880000 -        0x1218a0ff7 +com.adobe.illustrator.plugins.ArtOnPathBrushTool (Art Brush Tool version 19.0.0 - 19.0.0) <71D7CE2E-5B34-3F94-B489-385F2C2B159E> /Applications/Adobe Illustrator CC 2015/*/ArtOnPathBrushTool

       0x1218a7000 -        0x1218aafff +com.adobe.illustrator.plugins.TypeCase (Change Case version 19.0.0 - 19.0.0) <EAAA9507-9C7A-3A55-8ABC-BD92B1427EA9> /Applications/Adobe Illustrator CC 2015/*/TypeCase

       0x1218b0000 -        0x1218c6ff7 +com.adobe.illustrator.plugins.TxtSmart (Text Smart Punctuation version 19.0.0 - 19.0.0) <90D9FF93-F87F-3D83-87FD-49E37CB93BCE> /Applications/Adobe Illustrator CC 2015/*/TxtSmart

       0x1218dc000 -        0x1218f5ff7 +com.adobe.illustrator.plugins.TxtColumns (Split Into Grid version 19.0.0 - 19.0.0) <DC30992D-ADEB-3CE9-8C1A-F1F1263A8FEF> /Applications/Adobe Illustrator CC 2015/*/TxtColumns

       0x12190b000 -        0x121959fff +com.adobe.illustrator.plugins.TextFindFont (Find Font version 19.0.0 - 19.0.0) <80004B11-3609-30F3-9F91-03F1747AA6C1> /Applications/Adobe Illustrator CC 2015/*/TextFindFont

       0x121983000 -        0x12199efff +com.adobe.illustrator.plugins.SpellCheckDictionary (SpellCheckDictionary version 19.0.0 - 19.0.0) <264E385F-85FE-3AC5-9596-42BA3080E7AF> /Applications/Adobe Illustrator CC 2015/*/SpellCheckDictionary

       0x1219b5000 -        0x121a11fff +com.adobe.illustrator.plugins.PSImport (Photoshop Import version 19.0.0 - 19.0.0) <0B9D9000-F3C0-31A6-9911-EB98D28C7FD2> /Applications/Adobe Illustrator CC 2015/*/PSImport

       0x121a1f000 -        0x121a44fff +com.adobe.AIPSL (AIPSL version 19.0.0 - 19.0.0.44) <FE525942-3A03-3288-B37A-96D78A6B90FF> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AIPSL.framework/Versions/A/AIPSL

       0x121a6a000 -        0x121ab3ff7 +com.adobe.illustrator.plugins.PSExport (Photoshop Export version 19.0.0 - 19.0.0) <9D55EFB0-0CCF-345C-961F-673734837061> /Applications/Adobe Illustrator CC 2015/*/PSExport

       0x121abf000 -        0x121acefff +com.adobe.illustrator.plugins.PSLFilterAdapter (PSLFilterAdapter version 19.0.0 - 19.0.0.44) <2BAFDEB1-870B-39FD-9FC0-47AE92676674> /Applications/Adobe Illustrator CC 2015/*/PSLFilterAdapter

       0x121ad5000 -        0x121aeaff7 +com.adobe.illustrator.plugins.ZigZagUI (PunkUI version 19.0.0 - 19.0.0) <62FF26E7-30E5-327D-B7FC-604A79B6E7B0> /Applications/Adobe Illustrator CC 2015/*/ZigZagUI

       0x121b00000 -        0x121b4eff7 +com.adobe.illustrator.plugins.VectorizeUI (VectorizeUI version 19.0.0 - 19.0.0) <9C89E287-8BAC-3502-8C1D-2A780F73CE6F> /Applications/Adobe Illustrator CC 2015/*/VectorizeUI

       0x121b72000 -        0x121bb4ff7 +com.adobe.illustrator.plugins.VariablesPaletteUI (PlanetXUI version 19.0.0 - 19.0.0) <4B763D39-799F-3B48-B7B9-226A97AB66E3> /Applications/Adobe Illustrator CC 2015/*/VariablesPaletteUI

       0x121bd2000 -        0x121be3fff +com.adobe.illustrator.plugins.TwirlToolUI (TwirlToolUI version 19.0.0 - 19.0.0) <F69E067F-5AF7-3585-88A8-C17244C7ED38> /Applications/Adobe Illustrator CC 2015/*/TwirlToolUI

       0x121bf8000 -        0x121c0bfff +com.adobe.illustrator.plugins.TransformUI (TransformUI version 19.0.0 - 19.0.0) <2323EF1C-8A33-39A9-B618-93EC8BE022AE> /Applications/Adobe Illustrator CC 2015/*/TransformUI

       0x121c1f000 -        0x121c31fff +com.adobe.illustrator.plugins.TIFFFileFormatUI (TIFFFileFormatUI version 19.0.0 - 19.0.0) <7C0C023F-CDD6-3C87-AF35-E10CF38F6C4F> /Applications/Adobe Illustrator CC 2015/*/TIFFFileFormatUI

       0x121c46000 -        0x121c55fff +com.adobe.illustrator.plugins.TextExportUI (TextExportUI version 19.0.0 - 19.0.0) <776E016C-E4AC-39C9-83EE-E63992585DAE> /Applications/Adobe Illustrator CC 2015/*/TextExportUI

       0x121c69000 -        0x121cadff7 +com.adobe.illustrator.plugins.svgFileFormatUI (svgFileFormatUI version 19.0.0 - 19.0.0) <7D90476F-61F4-3B1D-908F-16F15A72AA4F> /Applications/Adobe Illustrator CC 2015/*/svgFileFormatUI

       0x121cd6000 -        0x121cfcff7 +com.adobe.illustrator.plugins.SpellCheckUI (SpellCheckUI version 19.0.0 - 19.0.0) <712244DA-5A19-3053-9EB2-83C87ECA652F> /Applications/Adobe Illustrator CC 2015/*/SpellCheckUI

       0x121d15000 -        0x121d2afff +com.adobe.illustrator.plugins.SlicingAttributesUI (SlicingAttributesUI version 19.0.0 - 19.0.0) <F0754A00-8168-3C20-B4B9-297E4BF22C97> /Applications/Adobe Illustrator CC 2015/*/SlicingAttributesUI

       0x121d40000 -        0x121d55fff +com.adobe.illustrator.plugins.ShapeEffectUI (ShapeEffectUI version 19.0.0 - 19.0.0) <E6486A7F-C527-3E0E-87AE-BE90F8655E38> /Applications/Adobe Illustrator CC 2015/*/ShapeEffectUI

       0x121d6b000 -        0x121d7bfff +com.adobe.illustrator.plugins.ScribbleUI (ScribbleUI version 19.0.0 - 19.0.0) <3B70B5EF-7B81-38AF-9C8C-351B6770E8E1> /Applications/Adobe Illustrator CC 2015/*/ScribbleUI

       0x121d90000 -        0x121da2ff7 +com.adobe.illustrator.plugins.ScribbleFillUI (Scribble version 19.0.0 - 19.0.0) <0D5E9FA6-3C72-355D-B869-7A05054A70EF> /Applications/Adobe Illustrator CC 2015/*/ScribbleFillUI

       0x121db7000 -        0x121ddcfff +com.adobe.illustrator.plugins.ScatterBrushToolUI (Adobe Scatter Brush Tool UI version 19.0.0 - 19.0.0) <1C4EDB9F-5003-3522-8DE3-A2C3887130D8> /Applications/Adobe Illustrator CC 2015/*/ScatterBrushToolUI

       0x121df5000 -        0x121e0cff7 +com.adobe.illustrator.plugins.SangamFormatsUI (SangamFormatsUI version 19.0.0 - 19.0.0) <C74F8FEA-9447-3F5E-97F6-0A6C546B2D06> /Applications/Adobe Illustrator CC 2015/*/SangamFormatsUI

       0x121e25000 -        0x121e37ff7 +com.adobe.illustrator.plugins.RoundUI (RoundUI version 19.0.0 - 19.0.0) <FADB0339-AE7F-32BC-BC0A-136DD25D0984> /Applications/Adobe Illustrator CC 2015/*/RoundUI

       0x121e4d000 -        0x121e61fff +com.adobe.illustrator.plugins.RoughenUI (RoughenUI version 19.0.0 - 19.0.0) <CBC0F9BE-3B38-34E1-8565-80FC71F8C24E> /Applications/Adobe Illustrator CC 2015/*/RoughenUI

       0x121e77000 -        0x121e91fff +com.adobe.illustrator.plugins.RasterizeUI (RasterizeUI version 19.0.0 - 19.0.0) <5375BCFD-80A3-3874-BE14-0E991E1A122E> /Applications/Adobe Illustrator CC 2015/*/RasterizeUI

       0x121eac000 -        0x121ebbfff +com.adobe.illustrator.plugins.PunkUI (PunkUI version 19.0.0 - 19.0.0) <BFEDC36D-3007-38BB-8B7D-98E29BB5F145> /Applications/Adobe Illustrator CC 2015/*/PunkUI

       0x121ecf000 -        0x121ee2ff7 +com.adobe.illustrator.plugins.PSLFilterAdapterUI (SampleUI version 19.0.0 - 19.0.0) <CA936DCF-FD56-3ABA-80E0-461D485EB930> /Applications/Adobe Illustrator CC 2015/*/PSLFilterAdapterUI

       0x121ef7000 -        0x121f0efff +com.adobe.illustrator.plugins.PSImportUI (PSImportUI version 19.0.0 - 19.0.0) <93321914-6EC5-38F1-B676-04611D69B2E9> /Applications/Adobe Illustrator CC 2015/*/PSImportUI

       0x121f25000 -        0x121f3bff7 +com.adobe.illustrator.plugins.PSExportUI (PSExportUI version 19.0.0 - 19.0.0) <C98DAE6F-82C8-3EC8-B928-4B7071A7D412> /Applications/Adobe Illustrator CC 2015/*/PSExportUI

       0x121f52000 -        0x121f65fff +com.adobe.illustrator.plugins.PreferenceUI (PreferenceUI version 19.0.0 - 19.0.0) <381AE0A4-F27E-3362-B652-107EF40F5236> /Applications/Adobe Illustrator CC 2015/*/PreferenceUI

       0x121f7a000 -        0x121facff7 +com.adobe.illustrator.plugins.PlanetXUI (PlanetXUI version 19.0.0 - 19.0.0) <55B52DF3-1D2A-3F82-9F94-E28E1DD7EB7C> /Applications/Adobe Illustrator CC 2015/*/PlanetXUI

       0x121fd6000 -        0x121fe9ff7 +com.adobe.illustrator.plugins.ParticleSystemUI (ParticleSystemUI version 19.0.0 - 19.0.0) <F904C066-C70D-3C91-9966-204AF87C74CF> /Applications/Adobe Illustrator CC 2015/*/ParticleSystemUI

       0x122800000 -        0x122835ff7 +com.adobe.illustrator.plugins.PerspectiveUI (PerspectiveUI version 19.0.0 - 19.0.0) <574A1121-B957-352A-A9BA-55B9A34CCAE7> /Applications/Adobe Illustrator CC 2015/*/PerspectiveUI

       0x122856000 -        0x1228b4ff7 +com.adobe.illustrator.plugins.PDFFormatUI (SampleUI version 19.0.0 - 19.0.0) <E809E43B-64DB-3DFB-A4CE-EE7B674C66DD> /Applications/Adobe Illustrator CC 2015/*/PDFFormatUI

       0x1228de000 -        0x122908fff +com.adobe.illustrator.plugins.PathfinderUI (PathfinderUI version 19.0.0 - 19.0.0) <DCCDC5FF-B7F1-379E-839F-828F67441E27> /Applications/Adobe Illustrator CC 2015/*/PathfinderUI

       0x122925000 -        0x122939ff7 +com.adobe.illustrator.plugins.OffsetPathUI (Offset Path version 19.0.0 - 19.0.0) <12C28636-549A-3236-AB77-2F46A4DD5F58> /Applications/Adobe Illustrator CC 2015/*/OffsetPathUI

       0x12294f000 -        0x122965ff7 +com.adobe.illustrator.plugins.ObjectMosaicUI (ObjectMosaicUI version 19.0.0 - 19.0.0) <1F2749A1-BD4A-38A3-A7B3-ECE7D47F4920> /Applications/Adobe Illustrator CC 2015/*/ObjectMosaicUI

       0x12297a000 -        0x122980fff +com.adobe.illustrator.plugins.MenuConfigurator (MenuConfigurator version 19.0.0 - 19.0.0) <F6E4BC36-3FB8-34C1-8375-0BF53F8CC459> /Applications/Adobe Illustrator CC 2015/*/MenuConfigurator

       0x122986000 -        0x1229c7fff +com.adobe.illustrator.plugins.LiveShapesUI (LiveShapesUI version 19.0.0 - 19.0.0) <EF262C11-DFE4-38B6-B072-EBBDB23D66B9> /Applications/Adobe Illustrator CC 2015/*/LiveShapesUI

       0x1229eb000 -        0x1229fbfff +com.adobe.illustrator.plugins.LiveBlendsUI (LiveBlendsUI version 19.0.0 - 19.0.0) <CB09328A-B4EB-3287-AEF9-B3034E4C3FF2> /Applications/Adobe Illustrator CC 2015/*/LiveBlendsUI

       0x122a0f000 -        0x122a24fff +com.adobe.illustrator.plugins.LiquifyToolUI (LiquifyToolUI version 19.0.0 - 19.0.0) <E4D30AF4-085F-315B-9947-699687D2FF0A> /Applications/Adobe Illustrator CC 2015/*/LiquifyToolUI

       0x122a3a000 -        0x122a4cfff +com.adobe.illustrator.plugins.JPEGFormatUI (JPEGFormatUI version 19.0.0 - 19.0.0) <4CB6BCE8-147D-3D35-AF56-28E68DD7E28D> /Applications/Adobe Illustrator CC 2015/*/JPEGFormatUI

       0x122a61000 -        0x122a8bfff +com.adobe.illustrator.plugins.InfoGraphicUI (InfoGraphicUI version 19.0.0 - 19.0.0) <E8864F22-3AC4-3F91-9D12-C6323067CBCA> /Applications/Adobe Illustrator CC 2015/*/InfoGraphicUI

       0x122a96000 -        0x122c59ff7 +com.adobe.illustrator.plugins.IllustratorUI (IllustratorUI version 19.0.0 - 19.0.0) <6C467E07-312F-302D-896B-5F1BB3465A27> /Applications/Adobe Illustrator CC 2015/*/IllustratorUI

       0x122d1b000 -        0x122d26ff7 +com.adobe.illustrator.plugins.IdeaFileFormatUIPlugin (IdeaFileFormatUIPlugin version 19.0.0 - 19.0.0.44) <78805E5D-66D6-3D69-AB5E-435707F29525> /Applications/Adobe Illustrator CC 2015/*/IdeaFileFormatUIPlugin

       0x122d2e000 -        0x122d3fff7 +com.adobe.illustrator.plugins.GlobAdjToolUI (SampleUI version 19.0.0 - 19.0.0) <6B1B90C0-C592-3D89-8686-1F0AE1ECCAB1> /Applications/Adobe Illustrator CC 2015/*/GlobAdjToolUI

       0x122d53000 -        0x122d62fff +com.adobe.illustrator.plugins.FuzzyEffectUI (FuzzyEffectUI version 19.0.0 - 19.0.0) <1369B4CF-CF2C-30FD-A2DE-407B598E19F4> /Applications/Adobe Illustrator CC 2015/*/FuzzyEffectUI

       0x122d76000 -        0x122da4fff +com.adobe.illustrator.plugins.FlattenTransparencyUI ( Flatten Transparency version 19.0.0 - 19.0.0) <E98950E3-E5E5-3E8B-A2CA-285336CB8C70> /Applications/Adobe Illustrator CC 2015/*/FlattenTransparencyUI

       0x122dbd000 -        0x122decff7 +com.adobe.illustrator.plugins.FlashFileFormatUI (SampleUI version 19.0.0 - 19.0.0) <D3B08E7E-50AF-3B60-BE97-8B7C62234FA8> /Applications/Adobe Illustrator CC 2015/*/FlashFileFormatUI

       0x122e04000 -        0x122e16ff7 +com.adobe.illustrator.plugins.FlareUI (FlareUI version 19.0.0 - 19.0.0) <135432A4-BC89-3826-A64E-7C26F6B632D7> /Applications/Adobe Illustrator CC 2015/*/FlareUI

       0x122e2c000 -        0x122e5dfff +com.adobe.illustrator.plugins.FindReplaceUI ( FindReplaceUI version 19.0.0 - 19.0.0) <5D07572E-7A86-3899-A5AB-BB35AD66F2B2> /Applications/Adobe Illustrator CC 2015/*/FindReplaceUI

       0x122e75000 -        0x122e8aff7 +com.adobe.illustrator.plugins.ExpandUI (ShapeToolUI version 19.0.0 - 19.0.0) <766471AC-14E6-3C1C-A30C-7867162B5997> /Applications/Adobe Illustrator CC 2015/*/ExpandUI

       0x122e9f000 -        0x122eb8fff +com.adobe.illustrator.plugins.DropShadowUI (DropShadowUI version 19.0.0 - 19.0.0) <188CB21B-E6B6-3330-910C-DFEBB8493790> /Applications/Adobe Illustrator CC 2015/*/DropShadowUI

       0x122ece000 -        0x122ee2ff7 +com.adobe.illustrator.plugins.DistortUI (DistortUI version 19.0.0 - 19.0.0) <EC1C76E1-D525-323C-97D1-6E9C042E0A44> /Applications/Adobe Illustrator CC 2015/*/DistortUI

       0x122ef8000 -        0x122f5dff7 +com.adobe.illustrator.plugins.DesignLibrary (DesignLibrary version 19.0.0 - 19.0.0) <565AD526-D869-3B28-8AE1-25B4B78C196C> /Applications/Adobe Illustrator CC 2015/*/DesignLibrary

       0x122f6a000 -        0x122f9ffff +AgoraLib.dylib (1.0.0.0) <57963005-8C78-3570-BD1D-DD790A334E2D> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AgoraLib.dylib

       0x123042000 -        0x123071fff +VulcanControl.dylib (5.1.0.50 - 5.1.0.50 Copyright 2015, Adobe Systems Incorporated. All rights reserved.) <6E4639FF-931A-3CEE-A732-E151D7F2525C> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/VulcanControl.dylib

       0x1230a5000 -        0x1230edff7 +VulcanMessage5.dylib (5.1.0.50 - 5.1.0.50 Copyright 2015, Adobe Systems Incorporated. All rights reserved.) <745353D7-D546-3F43-AEF2-C56E463C0FBC> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/VulcanMessage5.dylib

       0x123140000 -        0x123164ff7 +com.adobe.illustrator.plugins.DeformUI (DeformUI version 19.0.0 - 19.0.0) <A4D71FFA-1F65-3ABD-BDEC-71E52EBC48D8> /Applications/Adobe Illustrator CC 2015/*/DeformUI

       0x123180000 -        0x12319afff +com.adobe.illustrator.plugins.dBrushToolUI (dBrushToolUI version 19.0.0 - 19.0.0) <93C28B14-26F0-327E-9C87-A73C636B6462> /Applications/Adobe Illustrator CC 2015/*/dBrushToolUI

       0x1231b3000 -        0x1231cdfff +com.adobe.illustrator.plugins.CurvatureToolUI (NewPlugin version 19.0.0 - 19.0.0) <BBAD22CD-002F-3631-9148-FE9BCDF420A2> /Applications/Adobe Illustrator CC 2015/*/CurvatureToolUI

       0x1231d6000 -        0x123205fff +com.adobe.illustrator.plugins.CSSExtractUI (SampleUI version 19.0.0 - 19.0.0) <A1DD46A2-FA10-36DA-B71E-402BA702F6C9> /Applications/Adobe Illustrator CC 2015/*/CSSExtractUI

       0x12321f000 -        0x123299fff +com.adobe.illustrator.plugins.BrushManagerUI (ShapeToolUI version 19.0.0 - 19.0.0) <2E1F61BA-6B4B-3602-886B-DE31A57BA7D0> /Applications/Adobe Illustrator CC 2015/*/BrushManagerUI

       0x1232c7000 -        0x1232d1fff +com.adobe.illustrator.plugins.AssetMgmtUI (NewPlugin version 19.0.0 - 19.0.0) <DE76D4AD-3E25-3C6C-8074-DDFCFDA33808> /Applications/Adobe Illustrator CC 2015/*/AssetMgmtUI

       0x1232d9000 -        0x123336ff7 +com.adobe.illustrator.plugins.ArtOnPathBrushToolUI (PunkUI version 19.0.0 - 19.0.0) <500BB631-0CC1-3CF7-A856-A307109CB0F2> /Applications/Adobe Illustrator CC 2015/*/ArtOnPathBrushToolUI

       0x12336c000 -        0x1233d7ff7 +com.adobe.illustrator.plugins.AIToolBoxUI (AIToolBoxUI version 19.0.0 - 19.0.0) <F8B13FE8-1E71-3D64-AC2B-BA693C1BF1ED> /Applications/Adobe Illustrator CC 2015/*/AIToolBoxUI

       0x1233fd000 -        0x123410ff7 +com.adobe.illustrator.plugins.AddArrowUI (AddArrowUI version 19.0.0 - 19.0.0) <E1F4FC44-ADEA-362A-B448-AD7D8234C8E1> /Applications/Adobe Illustrator CC 2015/*/AddArrowUI

       0x123426000 -        0x12346cfff +com.adobe.illustrator.plugins.TIFFFileFormat (TIFF Format version 19.0.0 - 19.0.0) <F3FC4028-B1F2-3C99-B5A0-F9611DDB8B51> /Applications/Adobe Illustrator CC 2015/*/TIFFFileFormat

       0x123478000 -        0x12347dfff +com.adobe.illustrator.plugins.textexport (TextExport version 19.0.0 - 19.0.0) <E66A4661-EFCF-3AB7-8326-CF65DF0A138E> /Applications/Adobe Illustrator CC 2015/*/textexport

       0x123487000 -        0x123935fff +com.adobe.illustrator.plugins.Save4Web (SaveForWebEN version 19.0.0 - 19.0.0) <206B4CF2-5FBD-3622-8B29-1E802BDC4EF7> /Applications/Adobe Illustrator CC 2015/*/Save4Web

       0x1239a6000 -        0x1239fbff7 +com.adobe.illustrator.plugins.sangamservice (Sangam2AIMapper Plugin version 19.0.0 - 19.0.0) <714EBE7E-6B03-3543-B743-661EB72E47E4> /Applications/Adobe Illustrator CC 2015/*/sangamservice

       0x123a0b000 -        0x123a84ff7 +com.adobe.AdobeSangam (AdobeSangam 5.65.0.34547 - 5.65.0.34547) <A06D5A9E-FB78-38A7-B6F6-13511E389A31> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam

       0x123ad4000 -        0x123aedff7 +com.adobe.illustrator.plugins.PNGFileFormat (PNGFileFormat version 19.0.0 - 19.0.0) <C206D188-C390-3106-86A3-F3C444245764> /Applications/Adobe Illustrator CC 2015/*/PNGFileFormat

       0x123b03000 -        0x123b15fff +com.adobe.illustrator.plugins.PNGExport (PNGExport version 19.0.0 - 19.0.0) <483C8FB8-C98C-36D9-99F3-11BBBA4779FC> /Applications/Adobe Illustrator CC 2015/*/PNGExport

       0x123b1b000 -        0x123b54ff7 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 19.0.0 - 19.0.0) <CDB14748-07AA-3C42-B9FA-422CF11BE05F> /Applications/Adobe Illustrator CC 2015/*/MPSParser

       0x123b63000 -        0x123b87fff +com.adobe.illustrator.plugins.MPSExport (MPSExport version 19.0.0 - 19.0.0) <1855BC42-4A95-34D9-B978-F8D46978C42A> /Applications/Adobe Illustrator CC 2015/*/MPSExport

       0x123b92000 -        0x123bf9ff7 +com.adobe.illustrator.plugins.JSONFormat (JSONFormat version 19.0.0 - 19.0.0) <E6B238DD-D90F-3938-AB21-752438AC8495> /Applications/Adobe Illustrator CC 2015/*/JSONFormat

       0x123c04000 -        0x123c3eff7 +com.adobe.illustrator.plugins.JPEGFormat (JPEGFormat version 19.0.0 - 19.0.0) <12CADB09-D4C2-36EE-B158-2429D2ACFEEA> /Applications/Adobe Illustrator CC 2015/*/JPEGFormat

       0x123c47000 -        0x123c54fff +com.adobe.illustrator.plugins.Jpeg2000 ( Jpeg2000 version 19.0.0 - 19.0.0) <20323AEF-02C2-3646-BE21-E75674D05B18> /Applications/Adobe Illustrator CC 2015/*/Jpeg2000

       0x123c5c000 -        0x123c60fff +com.adobe.illustrator.plugins.GIF89aFormat (GIF89a Format version 19.0.0 - 19.0.0) <B59EE759-BF39-3C48-97FE-3262C929EFB2> /Applications/Adobe Illustrator CC 2015/*/GIF89aFormat

       0x123c65000 -        0x123d05ff7 +com.adobe.illustrator.plugins.FlashFileFormat (FlashFileFormat version 19.0.0 - 19.0.0) <8DC4EC5C-EAB2-3DA8-838E-E3AD59187DCC> /Applications/Adobe Illustrator CC 2015/*/FlashFileFormat

       0x123d16000 -        0x123d19fff +com.adobe.illustrator.plugins.ZigZag (Zig Zag version 19.0.0 - 19.0.0) <47024FC8-7250-37CD-BEFC-38893F0E1218> /Applications/Adobe Illustrator CC 2015/*/ZigZag

       0x123d1e000 -        0x123d25ff7 +com.adobe.illustrator.plugins.ShapeEffect (Shape Effects version 19.0.0 - 19.0.0) <8ABDA9A7-D0ED-33BB-9799-4A7A6FDB8CE2> /Applications/Adobe Illustrator CC 2015/*/ShapeEffect

       0x123d2a000 -        0x123d40fff +com.adobe.illustrator.plugins.ScribbleFill (Scribble version 19.0.0 - 19.0.0) <5A8F2C7D-B901-3527-B77C-D0FA92630483> /Applications/Adobe Illustrator CC 2015/*/ScribbleFill

       0x123d47000 -        0x123d4aff7 +com.adobe.illustrator.plugins.Scribble (Tweak version 19.0.0 - 19.0.0) <3A16A06C-1D12-3A0B-9CCB-6D7741E4085F> /Applications/Adobe Illustrator CC 2015/*/Scribble

       0x123d4f000 -        0x123d63fff +com.adobe.illustrator.plugins.Saturate (Saturate version 19.0.0 - 19.0.0) <7E64AF30-E62E-38EB-8E99-0E6A1808E298> /Applications/Adobe Illustrator CC 2015/*/Saturate

       0x123d79000 -        0x123d7cfff +com.adobe.illustrator.plugins.Round (Round Corners version 19.0.0 - 19.0.0) <E26FA7C1-CB49-383F-9677-229D13792DBE> /Applications/Adobe Illustrator CC 2015/*/Round

       0x123d81000 -        0x123d84ff7 +com.adobe.illustrator.plugins.Roughen (Roughen version 19.0.0 - 19.0.0) <DAE67044-0FFF-36D2-A449-7A67E11CF4CB> /Applications/Adobe Illustrator CC 2015/*/Roughen

       0x123d89000 -        0x123d8bff7 +com.adobe.illustrator.plugins.Punk (Punk version 19.0.0 - 19.0.0) <6CC17A2B-72EA-3785-AC90-23FB0B6E4BF7> /Applications/Adobe Illustrator CC 2015/*/Punk

       0x123d90000 -        0x123d9eff7 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 19.0.0 - 19.0.0) <DE23F8CF-04BD-3723-B86C-DEEFEFAF8B6A> /Applications/Adobe Illustrator CC 2015/*/Pathfinder

       0x123da3000 -        0x123db2fff +com.adobe.illustrator.plugins.Overprint (Overprint version 19.0.0 - 19.0.0) <9871C8AC-256F-339F-B4C4-287A81E88BC3> /Applications/Adobe Illustrator CC 2015/*/Overprint

       0x123dc7000 -        0x123dccfff +com.adobe.illustrator.plugins.OffsetPath (Offset Path version 19.0.0 - 19.0.0) <5A710E23-C651-39E2-987D-2AB6F2B86A30> /Applications/Adobe Illustrator CC 2015/*/OffsetPath

       0x123dd1000 -        0x123dd6ff7 +com.adobe.illustrator.plugins.ObjectMosaic (AI Object Mosaic Plug-in version 19.0.0 - 19.0.0) <534EDF8A-21B2-38EF-9327-235467608B40> /Applications/Adobe Illustrator CC 2015/*/ObjectMosaic

       0x123ddb000 -        0x123ddefff +com.adobe.illustrator.plugins.MaskHelper (MaskHelper version 19.0.0 - 19.0.0) <5DA65B65-6BBF-35F7-878A-903B0B222651> /Applications/Adobe Illustrator CC 2015/*/MaskHelper

       0x123de3000 -        0x123de5ff7 +com.adobe.illustrator.plugins.Inverse (Inverse version 19.0.0 - 19.0.0) <8E3B174F-8096-3D51-B70A-016C8444492D> /Applications/Adobe Illustrator CC 2015/*/Inverse

       0x123dea000 -        0x123dfeff7 +com.adobe.illustrator.plugins.FuzzyEffect (FuzzyEffect version 19.0.0 - 19.0.0) <F7C92DC1-4A63-3884-9C2C-D30A8CE1170A> /Applications/Adobe Illustrator CC 2015/*/FuzzyEffect

       0x123e05000 -        0x123e17ff7 +com.adobe.illustrator.plugins.Find (Find version 19.0.0 - 19.0.0) <83A366D9-1F5D-3DC0-9E45-E232CB92C3A3> /Applications/Adobe Illustrator CC 2015/*/Find

       0x123e1f000 -        0x123e22fff +com.adobe.illustrator.plugins.Expand (Expand version 19.0.0 - 19.0.0) <E0F961E3-F0E9-32BE-BBDC-346507E2428A> /Applications/Adobe Illustrator CC 2015/*/Expand

       0x123e27000 -        0x123e34ff7 +com.adobe.illustrator.plugins.Cleanup (Cleanup version 19.0.0 - 19.0.0) <1EA067E8-8B17-3CD3-82D2-0538414AC0A6> /Applications/Adobe Illustrator CC 2015/*/Cleanup

       0x123e49000 -        0x123e60fff +com.adobe.illustrator.plugins.Adjust (Adjust version 19.0.0 - 19.0.0) <3B297346-8BC7-32B2-B9BA-FD9A2F346462> /Applications/Adobe Illustrator CC 2015/*/Adjust

       0x123e76000 -        0x123e7afff +com.adobe.illustrator.plugins.AddArrow (AddArrow version 19.0.0 - 19.0.0) <C3713A23-10D2-364A-AACA-8060D9A3DED9> /Applications/Adobe Illustrator CC 2015/*/AddArrow

       0x123e7f000 -        0x123e81fff +com.adobe.illustrator.plugins.AddAnchor (AddAnchor version 19.0.0 - 19.0.0) <1D8860A5-A55A-3D9B-A9DA-BEAA05F2609F> /Applications/Adobe Illustrator CC 2015/*/AddAnchor

       0x123e86000 -        0x123ebcff7 +com.adobe.illustrator.plugins.Workspaces (Workspaces version 19.0.0 - 19.0.0) <01F24BC5-0F27-33A0-9025-108C04125C16> /Applications/Adobe Illustrator CC 2015/*/Workspaces

       0x123ed7000 -        0x123ef0fff +com.adobe.illustrator.plugins.VulcanService (VulcanService version 19.0.0 - 19.0.0) <9AAF711B-078F-371A-A9DF-00E7C7A23DEC> /Applications/Adobe Illustrator CC 2015/*/VulcanService

       0x123ef9000 -        0x123f3bff7 +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 19.0.0 - 19.0.0) <02C66FA4-17AC-38CA-AA31-B617643C8FB0> /Applications/Adobe Illustrator CC 2015/*/TransparencyPalette

       0x123f5a000 -        0x123faaff7 +com.adobe.illustrator.plugins.TransformPalett (Transform Palette version 19.0.0 - 19.0.0) <9493A669-9149-346A-9FAF-5B4F769F5849> /Applications/Adobe Illustrator CC 2015/*/TransformPalett

       0x123fca000 -        0x123fd3ff7 +com.adobe.illustrator.plugins.Transform (Transform Each version 19.0.0 - 19.0.0) <2BCDB809-20F0-3303-81E6-5582360C5BEA> /Applications/Adobe Illustrator CC 2015/*/Transform

       0x123fd8000 -        0x123ffaff7 +com.adobe.illustrator.plugins.SVGFilterEffect (SVG Filter Effect version 19.0.0 - 19.0.0) <CEF15055-42C8-3846-A848-2B485569D61B> /Applications/Adobe Illustrator CC 2015/*/SVGFilterEffect

       0x124003000 -        0x124014fff +com.adobe.illustrator.plugins.StrokeOffset (StrokeOffset version 19.0.0 - 19.0.0) <9CBC381A-12D6-3AF1-98E2-C3EB6F9CB13A> /Applications/Adobe Illustrator CC 2015/*/StrokeOffset

       0x12401c000 -        0x124056fff +com.adobe.illustrator.plugins.SmoothShade (Gradient Mesh version 19.0.0 - 19.0.0) <1A1C7191-7404-3014-9244-B0822F59E301> /Applications/Adobe Illustrator CC 2015/*/SmoothShade

       0x12406d000 -        0x1240c8ff7 +com.adobe.illustrator.plugins.Services (Services version 19.0.0 - 19.0.0) <724BC6F6-24FC-37F3-B02A-40D3979BFA4F> /Applications/Adobe Illustrator CC 2015/*/Services

       0x1240f9000 -        0x1243f4ff7 +com.adobe.PlugPlugOwl (6.0.0.96 - 6.0.0.96) <10483D94-E469-33E1-BEF1-FCB4561041C8> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl

       0x1246f4000 -        0x124719ff7 +com.adobe.illustrator.plugins.SeparationPreview (Separation Preview version 19.0.0 - 19.0.0) <0941C79E-4B19-3E66-A4C9-87645724A870> /Applications/Adobe Illustrator CC 2015/*/SeparationPreview

       0x124724000 -        0x12472bfff +com.adobe.illustrator.plugins.ScriptsMenu (Scripts Menu version 19.0.0 - 19.0.0) <AFCF8371-F479-33E6-9105-B944FA5AA725> /Applications/Adobe Illustrator CC 2015/*/ScriptsMenu

       0x124731000 -        0x1247a2fff +com.adobe.illustrator.plugins.Print (Print version 19.0.0 - 19.0.0) <211B745C-BA65-3503-AB0D-6FB356E85ADE> /Applications/Adobe Illustrator CC 2015/*/Print

       0x1247cc000 -        0x1247f1fff +com.adobe.illustrator.plugins.Package (Package version 19.0.0 - 19.0.0) <EA74AB79-ACBD-3F6B-AF7D-13647C687CDE> /Applications/Adobe Illustrator CC 2015/*/Package

       0x124807000 -        0x124812ff7 +com.adobe.illustrator.plugins.Nudge (NudgeEN version 19.0.0 - 19.0.0) <565AB22C-ED71-38A7-A05F-C22FF355155A> /Applications/Adobe Illustrator CC 2015/*/Nudge

       0x124818000 -        0x124846ff7 +com.adobe.illustrator.plugins.Navigator (Adobe Navigator Plugin version 19.0.0 - 19.0.0) <9122564A-95B0-3DE9-8F03-F243A4C630F0> /Applications/Adobe Illustrator CC 2015/*/Navigator

       0x124860000 -        0x124869fff +com.adobe.illustrator.plugins.LiveShapes (LiveShapes version 19.0.0 - 19.0.0) <F6795468-384C-3CE9-8E70-AF90A496B22F> /Applications/Adobe Illustrator CC 2015/*/LiveShapes

       0x12486f000 -        0x12489aff7 +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 19.0.0 - 19.0.0) <18C42F62-9387-31D8-BA80-3669A8D8B19E> /Applications/Adobe Illustrator CC 2015/*/LiveBlends

       0x1248a0000 -        0x12491aff7 +com.adobe.illustrator.plugins.Layers (Layers Palette version 19.0.0 - 19.0.0) <A91201FD-3602-3C26-95DE-39C66860C318> /Applications/Adobe Illustrator CC 2015/*/Layers

       0x12493d000 -        0x12497ffff +com.adobe.illustrator.plugins.KeyboardShortcuts (Keyboard Shortcuts version 19.0.0 - 19.0.0) <470AC848-28F7-397C-BAD0-4418E1D98E5C> /Applications/Adobe Illustrator CC 2015/*/KeyboardShortcuts

       0x1249a4000 -        0x124a05ff7 +com.adobe.illustrator.plugins.InfoGraphic (InfoGraphic version 19.0.0 - 19.0.0) <E4476D78-5434-36F9-84BD-101DBC805EFA> /Applications/Adobe Illustrator CC 2015/*/InfoGraphic

       0x124a0e000 -        0x124b28ff7 +com.adobe.illustrator.plugins.IdeaFileFormat (IdeaFileFormat version 19.0.0 - 19.0.0.44) <D1C632CA-0BCE-3153-AF0C-E6E28E5C73DF> /Applications/Adobe Illustrator CC 2015/*/IdeaFileFormat

       0x124b44000 -        0x124b88fff +com.adobe.illustrator.plugins.FWAlignADM (AdobeAlignObjects version 19.0.0 - 19.0.0) <2E5EAF05-9F3A-3FBD-97EB-BB56E4B0FD0D> /Applications/Adobe Illustrator CC 2015/*/FWAlignADM

       0x124baa000 -        0x124be1ff7 +com.adobe.illustrator.plugins.FlatteningPreview (Flattening Preview version 19.0.0 - 19.0.0) <74B98DD6-BB03-34E5-9748-9D1DE6BC6EDC> /Applications/Adobe Illustrator CC 2015/*/FlatteningPreview

       0x124bf1000 -        0x124bfdff7 +com.adobe.illustrator.plugins.fileclipboardpref (FileClipboardPref version 19.0.0 - 19.0.0) <24E9B783-106F-3595-989C-E49961C37F26> /Applications/Adobe Illustrator CC 2015/*/fileclipboardpref

       0x124c04000 -        0x124c3aff7 +com.adobe.illustrator.plugins.DynamicCorners (DynamicCorners version 19.0.0 - 19.0.0) <23850375-44C6-3DFF-AD50-91CE05420506> /Applications/Adobe Illustrator CC 2015/*/DynamicCorners

       0x124c5d000 -        0x124cadff7 +com.adobe.illustrator.plugins.CSSExtract (NewPlugin version 19.0.0 - 19.0.0) <D9DA965F-80DD-3A6A-B730-549EBA6827DF> /Applications/Adobe Illustrator CC 2015/*/CSSExtract

       0x124cb6000 -        0x124cd4fff +com.adobe.illustrator.plugins.ContextMenuTouch (ContextMenuTouch version 19.0.0 - 19.0.0) <D3713E98-6435-3C15-8095-E291758A00EE> /Applications/Adobe Illustrator CC 2015/*/ContextMenuTouch

       0x124cdf000 -        0x124d93fff +com.adobe.illustrator.plugins.CharParaStyles (CharParaStyles version 19.0.0 - 19.0.0) <8DBD8485-5E07-3948-A703-9F62AD811534> /Applications/Adobe Illustrator CC 2015/*/CharParaStyles

       0x124dce000 -        0x124ddbfff +com.adobe.illustrator.plugins.BNPlugin (BNPlugin version 19.0.0 - 19.0.0) <D8E2CA15-957B-35D2-B75B-1A15BB83EFC2> /Applications/Adobe Illustrator CC 2015/*/BNPlugin

       0x124de2000 -        0x124e8cff7 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 19.0.0 - 19.0.0) <C85C73C8-55C1-3C1C-AB5E-A82F88D792AA> /Applications/Adobe Illustrator CC 2015/*/ArtStyle

       0x124ebc000 -        0x124ef1ff7 +com.adobe.illustrator.plugins.ArtboardPanel (Artboard Panel version 19.0.0 - 19.0.0) <595904A7-CF77-32B6-9884-C96772327603> /Applications/Adobe Illustrator CC 2015/*/ArtboardPanel

       0x124f0c000 -        0x124f29ff7 +com.adobe.illustrator.plugins.AppBarControls (AppBarControls version 19.0.0 - 19.0.0) <1164E4F3-262B-3B3A-925E-3953A69937B9> /Applications/Adobe Illustrator CC 2015/*/AppBarControls

       0x124f34000 -        0x124f75fff +com.adobe.illustrator.plugins.altglyph (AdobeAltGlyphPalette version 19.0.0 - 19.0.0) <F26AA054-9674-38CA-93DF-4742BD759700> /Applications/Adobe Illustrator CC 2015/*/altglyph

       0x124f9b000 -        0x125016fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 19.0.0 - 19.0.0) <D36DC1B5-96CF-3937-8284-2AC056E78CAE> /Applications/Adobe Illustrator CC 2015/*/ActionPalette

       0x12504c000 -        0x1251f1fff +com.adobe.illustrator.plugins.3D (3D version 19.0.0 - 19.0.0) <C28C615E-327A-3333-A777-7EED6F55C421> /Applications/Adobe Illustrator CC 2015/*/3D

       0x12525c000 -        0x1252ffff7 +com.adobe.illustrator.plugins.PDFFormat (PDF Format version 19.0.0 - 19.0.0) <673CD9BD-CD20-3CDC-8965-2CC7650235B9> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/PDFFormat.aip/Contents/MacOS/PDFFormat

       0x12530d000 -        0x12533dff7 +com.adobe.illustrator.plugins.PathSuite (Path Suite version 19.0.0 - 19.0.0) <A14B0812-47F4-34E7-9F46-5CDFC893E286> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Required/Plug-ins/PathSuite.aip/Contents/MacOS/PathSuite

       0x12537d000 -        0x125463fef  unorm8_bgra.dylib (2.4.5) <5F488C7E-2FB2-3C66-9764-28CF16B03E7A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib

       0x1258bb000 -        0x1258c0ff7  com.apple.URLMount.CIFSPlugin (7.0.0 - 7.0.0) <9D520494-67BB-371C-9BF1-29365792E995> /System/Library/Filesystems/NetFSPlugins/smb.bundle/Contents/MacOS/smb

       0x1258cf000 -        0x1258e8fff  com.apple.SMBClient (3.0.0 - 3.0.0) <DA63FC19-7A4D-33FE-BBA8-EC7ED0654EEE> /System/Library/PrivateFrameworks/SMBClient.framework/Versions/A/SMBClient

       0x1258f3000 -        0x125964ff7  com.apple.DCERPC (2.0 - 61) <3F2272F0-7D70-3243-9A39-EB824758FC32> /System/Library/PrivateFrameworks/DCERPC.framework/Versions/A/DCERPC

       0x14f65d000 -        0x14f67afff  libJapaneseConverter.dylib (64) <12325659-06A4-37C9-8A9C-DA7A3F8DB8A2> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

       0x14f67f000 -        0x14f6a1fff  libKoreanConverter.dylib (64) <E51FCBAE-3886-32B7-B4F8-51B3CBF683ED> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

       0x14f6a5000 -        0x14f6b4fff  libSimplifiedChineseConverter.dylib (64) <468DE6E1-42B9-3751-ACA5-7D16C550FF84> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib

       0x14f6b8000 -        0x14f6cafff  libTraditionalChineseConverter.dylib (64) <DCA11C00-8F36-39E5-BD2A-B15183931E8B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib

       0x14f6ce000 -        0x14f6cfff7  libCyrillicConverter.dylib (64) <91BE01AF-E364-3DF4-9968-05996B748FE0> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib

       0x150200000 -        0x15022dff3 +MMXCore (16.0.0 - 16.0.0) <993AF7A0-E5B5-3B32-BB70-2D4EB336A61C> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/MacOS/MMXCore.plugin/Contents/MacOS/MMXCore

       0x15220a000 -        0x152230ff7 +com.adobe.ape (3.4.0.29366 - 3.4.0.29366) <40A59819-7A57-0E9F-658D-1803B2A461AE> /Applications/Adobe Illustrator CC 2015/Adobe Illustrator.app/Contents/Frameworks/adbeapecore.framework/adbeapecore

       0x152243000 -        0x152352ff7 +IMSLib.dylib (9.0.1.5 - 9.0.1.5) <AC77A2DA-B4AC-3F26-95C6-E649631A0A99> /Library/Application Support/Adobe/*/IMSLib.dylib

       0x1526b2000 -        0x15275efff  ColorSyncDeprecated.dylib (442) <3518239D-60D5-39AF-A68C-E7B12564103C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib

    0x123400000000 -     0x123400508fff  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.6.31 - 10.0.6) <29180B4C-D65A-3AA3-A48B-E411D77F213D> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver

    0x7fff6796d000 -     0x7fff679a3837  dyld (353.2.1) <72A99D0F-0B56-3938-ABC5-67A0F33757C4> /usr/lib/dyld

    0x7fff86094000 -     0x7fff860a1fff  libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib

    0x7fff86235000 -     0x7fff86327ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib

    0x7fff86328000 -     0x7fff86328fff  libOpenScriptingUtil.dylib (162.2) <D6A2216D-ADB2-3F24-AD30-F6D00829F545> /usr/lib/libOpenScriptingUtil.dylib

    0x7fff86329000 -     0x7fff86451ff7  com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x7fff8645c000 -     0x7fff86641ff7  libicucore.A.dylib (531.48) <3CD34752-B1F9-31D2-865D-B5B0F0BE3111> /usr/lib/libicucore.A.dylib

    0x7fff86646000 -     0x7fff871c7ff7  com.apple.AppKit (6.9 - 1348.17) <E485D56D-3E72-34B7-99BB-BFDEE2D07BF5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

    0x7fff871c8000 -     0x7fff871deff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib

    0x7fff871e1000 -     0x7fff8725afe7  libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib

    0x7fff8729f000 -     0x7fff872a3fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels

    0x7fff8738c000 -     0x7fff87396ff7  com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth

    0x7fff87397000 -     0x7fff87399fff  libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib

    0x7fff8739a000 -     0x7fff873abff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib

    0x7fff873ac000 -     0x7fff873aefff  libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib

    0x7fff873af000 -     0x7fff87416ffb  com.apple.datadetectorscore (6.0 - 396.1.1) <2127914D-0F8B-3032-9E25-E4209531D948> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore

    0x7fff8742a000 -     0x7fff8743cff7  libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib

    0x7fff87477000 -     0x7fff874b2fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication

    0x7fff874b3000 -     0x7fff87729ff7  com.apple.security (7.0 - 57031.30.12) <E9CF3D8E-0165-3EB2-BED9-FDB99CDA924B> /System/Library/Frameworks/Security.framework/Versions/A/Security

    0x7fff877d6000 -     0x7fff877f1fff  com.apple.AppleVPAFramework (1.4.5 - 1.4.5) <A6421B0B-6D4D-3E64-AC61-DDB04ED7CFF0> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA

    0x7fff877f2000 -     0x7fff87b25ff7  libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib

    0x7fff87b26000 -     0x7fff87bbbff7  com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync

    0x7fff87bc8000 -     0x7fff87c13fff  com.apple.CloudDocs (1.0 - 321.9) <9CFB3AAF-9BD4-3543-BAEA-06AFC177A288> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs

    0x7fff87c3c000 -     0x7fff87c5bfff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet

    0x7fff87d25000 -     0x7fff88155fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x7fff881fb000 -     0x7fff8821bff7  com.apple.MultitouchSupport.framework (264.6 - 264.6) <B4BDB2C0-5D4E-30F4-8EB0-CC16C91DF418> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport

    0x7fff88234000 -     0x7fff882a8ffb  com.apple.securityfoundation (6.0 - 55126) <D3C26373-83B1-3FDF-AD9C-39875D84312A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

    0x7fff882df000 -     0x7fff882dfff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib

    0x7fff882e0000 -     0x7fff882e1fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent

    0x7fff882ed000 -     0x7fff88337fff  com.apple.HIServices (1.22 - 523) <C7F6A39C-EBC0-3AA7-B355-2DBF988B5A6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices

    0x7fff883b6000 -     0x7fff883beffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib

    0x7fff883bf000 -     0x7fff883bffff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

    0x7fff883c0000 -     0x7fff884e4ff7  com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices

    0x7fff884e5000 -     0x7fff884ffff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

    0x7fff88500000 -     0x7fff88584fff  com.apple.PerformanceAnalysis (1.0 - 1) <BAE4C265-C0B9-3302-AC88-EB5F312FD33C> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis

    0x7fff88586000 -     0x7fff885edff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi

    0x7fff885f6000 -     0x7fff885fcfff  libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib

    0x7fff885fd000 -     0x7fff8872dfff  com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation

    0x7fff887a6000 -     0x7fff887b0fff  com.apple.KerberosHelper (4.0 - 1.0) <DA8D89D2-3185-3527-9E36-AA17F018B776> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper

    0x7fff88b5b000 -     0x7fff88baaff7  com.apple.opencl (2.4.2 - 2.4.2) <EB365E68-9965-3596-A40A-D1E372F3A9B3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x7fff88bab000 -     0x7fff88bb4ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib

    0x7fff88bb5000 -     0x7fff88bd6fff  com.apple.framework.Apple80211 (10.3 - 1030.71.6) <C0A17391-5C8B-34B1-BD46-8D644AB57DE0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211

    0x7fff88c04000 -     0x7fff88c05ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib

    0x7fff88c06000 -     0x7fff88c0fff3  com.apple.CommonAuth (4.0 - 2.0) <07FD1753-5498-310F-8C58-49E2F27C614B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth

    0x7fff88eae000 -     0x7fff88ee0ff7  libTrueTypeScaler.dylib (134.4) <82731A4D-8107-3E93-AA6A-A69EF2EC68D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib

    0x7fff88ee1000 -     0x7fff88f27ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib

    0x7fff88f28000 -     0x7fff88f30fe7  libcldcpuengine.dylib (2.4.5) <6CC680F9-0D13-333B-B151-F0D9C631A1E5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib

    0x7fff88f31000 -     0x7fff88f31fff  com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

    0x7fff88f3a000 -     0x7fff8901efff  libcrypto.0.9.8.dylib (52.30.1) <093A3CCE-953A-365F-9412-775DE0AF2870> /usr/lib/libcrypto.0.9.8.dylib

    0x7fff8901f000 -     0x7fff8903bfff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage

    0x7fff8903f000 -     0x7fff89064fff  libPng.dylib (1238) <0FBC90C7-D229-3D27-BB1B-37540D31A0D6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff89065000 -     0x7fff89070ff7  libcsfde.dylib (471.30.1) <A62AE3D8-E2A6-314A-BF45-804003BE0AC9> /usr/lib/libcsfde.dylib

    0x7fff89071000 -     0x7fff890e2ffb  com.apple.ApplicationServices.ATS (360 - 375.4) <A1BEBCF8-8FC8-345D-B91D-1DA5773AF5A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS

    0x7fff890e3000 -     0x7fff890e7fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib

    0x7fff890e8000 -     0x7fff890f3ff7  com.apple.CrashReporterSupport (10.10 - 631) <C44259AC-0A1C-3EC5-99AC-48CB520A709D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport

    0x7fff891d6000 -     0x7fff89207ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage

    0x7fff89208000 -     0x7fff8924eff7  libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib

    0x7fff892af000 -     0x7fff892bafff  libGL.dylib (11.1.2) <FD8B7B67-1532-32A1-B369-9D7A6C1EB3ED> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff892bc000 -     0x7fff892c9ff7  com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore

    0x7fff8933e000 -     0x7fff894ccfff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib

    0x7fff894da000 -     0x7fff8954cfff  com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

    0x7fff8954d000 -     0x7fff89693fef  libsqlite3.dylib (168.2) <53F6A294-15D7-3804-9ABF-47D35E15CDFB> /usr/lib/libsqlite3.dylib

    0x7fff89694000 -     0x7fff896eeff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling

    0x7fff896ef000 -     0x7fff8971afff  com.apple.DictionaryServices (1.2 - 229) <F03DFAC6-6285-3176-9C6D-7CC50F8CD52A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices

    0x7fff8971b000 -     0x7fff89a02ffb  com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore

    0x7fff89a03000 -     0x7fff89a6ffff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN

    0x7fff89afd000 -     0x7fff89e02ff3  com.apple.HIToolbox (2.1.1 - 758.7) <083019EB-7F58-36F1-BF7F-9E746F692E5C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox

    0x7fff89e03000 -     0x7fff89e05fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging

    0x7fff89e06000 -     0x7fff8a013ffb  com.apple.CFNetwork (720.4.4 - 720.4.4) <71A596B3-A837-3ADF-9560-1DCDA9292F96> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork

    0x7fff8a04e000 -     0x7fff8a059ff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <A5640275-E2A6-3856-95EF-5F0DC440B10C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis

    0x7fff8aa79000 -     0x7fff8aaa1fff  libxpc.dylib (559.30.1) <80D68997-17B9-32B6-A5FA-A218216415E5> /usr/lib/system/libxpc.dylib

    0x7fff8aaa2000 -     0x7fff8aaa4fff  com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport

    0x7fff8aaa5000 -     0x7fff8aaaefff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib

    0x7fff8abd1000 -     0x7fff8ac01fff  com.apple.GSS (4.0 - 2.0) <7DE487D3-50C8-3A45-8C17-B8806B5E6AA5> /System/Library/Frameworks/GSS.framework/Versions/A/GSS

    0x7fff8ac19000 -     0x7fff8ac1ffff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition

    0x7fff8ac45000 -     0x7fff8ac49fff  libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

    0x7fff8ac4a000 -     0x7fff8ac4ffff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

    0x7fff8acbd000 -     0x7fff8adcfff7  libvDSP.dylib (516) <151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib

    0x7fff8add8000 -     0x7fff8adfefff  com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary

    0x7fff8b132000 -     0x7fff8b137ffb  libheimdal-asn1.dylib (398.10.1) <D362D79B-CC4F-3E62-9BC7-9B645BEBBF4E> /usr/lib/libheimdal-asn1.dylib

    0x7fff8b2f0000 -     0x7fff8b5f2ffb  com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices

    0x7fff8b6d5000 -     0x7fff8b75eff7  com.apple.CoreSymbolication (3.1 - 57020.2) <FA7C613D-B4DF-333A-B3D6-884CE87E2C6D> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication

    0x7fff8b75f000 -     0x7fff8b764ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib

    0x7fff8c0c4000 -     0x7fff8c0f1fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff8c0f2000 -     0x7fff8c371ff7  com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x7fff8c7a5000 -     0x7fff8c7cfff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib

    0x7fff8c7df000 -     0x7fff8c7e3fff  com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC

    0x7fff8c7f4000 -     0x7fff8c7fcff7  com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP

    0x7fff8c7fd000 -     0x7fff8c8acfe7  libvMisc.dylib (516) <6739E390-46E7-3BFA-9B69-B278562326E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib

    0x7fff8c8ad000 -     0x7fff8c8c6ff3  com.apple.openscripting (1.6.4 - 162.2) <BF79207B-C762-346D-8FF0-3DDCECC9E9E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

    0x7fff8c8c7000 -     0x7fff8c958ff7  libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib

    0x7fff8c959000 -     0x7fff8ccf1ff7  com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    0x7fff8ccf2000 -     0x7fff8ccf4fff  libsystem_configuration.dylib (699.30.1) <B124CC64-59B9-354F-A693-B3431ADB87AC> /usr/lib/system/libsystem_configuration.dylib

    0x7fff8ccf5000 -     0x7fff8cd0fff7  libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib

    0x7fff8cd19000 -     0x7fff8cd1aff3  libSystem.B.dylib (1213) <AD223AEB-237D-35A3-825E-EECF95916838> /usr/lib/libSystem.B.dylib

    0x7fff8cd23000 -     0x7fff8cd64fff  libGLU.dylib (11.1.2) <2BA52A8D-ED35-3D86-B2D6-41479969C96D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff8cd65000 -     0x7fff8cdc2fff  com.apple.QuickLookFramework (5.0 - 675.42) <A9B7668D-60EF-35B2-9ACB-0E68DE335B15> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook

    0x7fff8cf41000 -     0x7fff8d001ff7  com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

    0x7fff8d017000 -     0x7fff8d03ffff  libRIP.A.dylib (788.2) <4DAA8224-AD10-3865-BF9F-DF56168914F9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib

    0x7fff8d040000 -     0x7fff8d040ff7  liblaunch.dylib (559.30.1) <B1301610-D60C-3301-B254-11F066BD48A7> /usr/lib/system/liblaunch.dylib

    0x7fff8d041000 -     0x7fff8d045ff7  libGIF.dylib (1238) <85700496-D341-3497-96A6-96948A710370> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff8d046000 -     0x7fff8d075ff7  com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <B93D4775-149C-3698-B38C-9C50673D455C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal

    0x7fff8d2e7000 -     0x7fff8d3d9fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib

    0x7fff8d7c0000 -     0x7fff8d9ba46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib

    0x7fff8d9ca000 -     0x7fff8db04fff  com.apple.ImageIO.framework (3.3.0 - 1238) <A4B8E6F8-9601-3E2D-ABCC-97491779E8B4> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x7fff8db05000 -     0x7fff8db12ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib

    0x7fff8db13000 -     0x7fff8db13fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff8db33000 -     0x7fff8db45ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture

    0x7fff8db63000 -     0x7fff8db95ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon

    0x7fff8dcdb000 -     0x7fff8dfaaff3  com.apple.CoreImage (10.3.4) <C1AE8252-A95D-3BF4-83B8-BE85E979F2CB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage

    0x7fff8dfb7000 -     0x7fff8e08dff3  com.apple.DiskImagesFramework (10.10.4 - 397) <8B513846-28A2-3275-B8A0-DF08C5EC077A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

    0x7fff8e0ac000 -     0x7fff8e0aefff  libRadiance.dylib (1238) <7F6B6C0C-C5C9-3D83-B0A4-23BAB0E5D759> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib

    0x7fff8e0af000 -     0x7fff8e0b2ffb  libCGXType.A.dylib (788.2) <2F4BD0F4-9A86-3611-9004-F14E4FDCBAE9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib

    0x7fff8e0f5000 -     0x7fff8e100fff  libcommonCrypto.dylib (60061.30.1) <E789748D-F9A7-3CFF-B317-90DF348B1E95> /usr/lib/system/libcommonCrypto.dylib

    0x7fff8e101000 -     0x7fff8e105fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib

    0x7fff8e106000 -     0x7fff8e192ff7  libsystem_c.dylib (1044.10.1) <86FBED7A-F2C8-3591-AD6F-486DD57E6B6A> /usr/lib/system/libsystem_c.dylib

    0x7fff8e193000 -     0x7fff8e19cfff  libGFXShared.dylib (11.1.2) <7F9F6175-E993-3014-8C9B-1F08CE7C75A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

    0x7fff8e2cd000 -     0x7fff8e305fff  libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib

    0x7fff8e973000 -     0x7fff8ec8efcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage

    0x7fff8ec96000 -     0x7fff8eca7fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib

    0x7fff8ecf4000 -     0x7fff8ed0eff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity

    0x7fff8ed0f000 -     0x7fff8ed12fff  com.apple.xpc.ServiceManagement (1.0 - 1) <D94F7F86-4015-3453-92FD-ADC04F215C04> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement

    0x7fff8ed2f000 -     0x7fff8ed4ffff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices

    0x7fff8ed8a000 -     0x7fff8ed97ff3  com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer

    0x7fff8edc6000 -     0x7fff8ee12ff7  libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib

    0x7fff8eedb000 -     0x7fff8ef1bff7  libGLImage.dylib (11.1.2) <9B05F3BF-D111-3B01-B7F8-C5EF7E02000B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

    0x7fff8ef9c000 -     0x7fff8efa1fff  libsystem_stats.dylib (163.30.2) <48A9387D-5C63-3E79-979C-F675552F6FC9> /usr/lib/system/libsystem_stats.dylib

    0x7fff8efa2000 -     0x7fff8efb9ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib

    0x7fff8efd4000 -     0x7fff8f0c4fef  libJP2.dylib (1238) <170811AC-E632-3257-86AB-786F402C82DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x7fff8f0ce000 -     0x7fff8f0d6fff  libsystem_dnssd.dylib (576.30.4) <4EA2DEC3-77EE-3941-A703-DE6DC2056B15> /usr/lib/system/libsystem_dnssd.dylib

    0x7fff8f0d7000 -     0x7fff8f0d8ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print

    0x7fff8f240000 -     0x7fff8f28cfff  com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation

    0x7fff8f28d000 -     0x7fff8f28efff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib

    0x7fff8f2ea000 -     0x7fff8f2eafff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <9D749502-A228-3BF1-B52F-A182DEEB2C4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib

    0x7fff8f2f4000 -     0x7fff8f327fff  com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

    0x7fff8f33b000 -     0x7fff8f39afff  com.apple.AE (681.2 - 681.2) <450F45DB-0F60-383D-BD22-03E296C82675> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE

    0x7fff8f3f6000 -     0x7fff8f410ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib

    0x7fff8f411000 -     0x7fff8f419ff3  com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents

    0x7fff8f454000 -     0x7fff8f48effb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols

    0x7fff8f4c9000 -     0x7fff8f4c9fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices

    0x7fff8f4ca000 -     0x7fff8f4e3ff7  com.apple.CFOpenDirectory (10.10 - 187) <2BF2705E-2CC6-37E7-BD49-D4B4E01591E3> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory

    0x7fff8f4e4000 -     0x7fff8f4e5fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib

    0x7fff8f4e6000 -     0x7fff8f510fff  GLRendererFloat (11.1.2) <50EC0CD3-5CAB-3183-9818-FC4A405B681F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat

    0x7fff8f558000 -     0x7fff8f55cfff  com.apple.IOAccelerator (156.16 - 156.16) <12DE1474-4B2A-3D7D-ACF9-DDAF66A6936A> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator

    0x7fff8f56c000 -     0x7fff8f60be27  com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG

    0x7fff8f60e000 -     0x7fff8f61cff7  com.apple.opengl (11.1.2 - 11.1.2) <5F355713-4637-33CD-9CBA-4B4CA43FB0FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x7fff8f8f8000 -     0x7fff8f915fff  libsystem_kernel.dylib (2782.30.5) <101D28C0-AF07-3B81-87BE-CA27ADED33AB> /usr/lib/system/libsystem_kernel.dylib

    0x7fff8fe41000 -     0x7fff8ff35fff  libFontParser.dylib (134.4) <12F2E476-F05A-3F01-92FF-6E0C6D7F8DD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib

    0x7fff8ff36000 -     0x7fff8ff3dff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib

    0x7fff8ff4e000 -     0x7fff8ffbdfff  com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit

    0x7fff8ffbe000 -     0x7fff8ffcdfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis

    0x7fff8ffce000 -     0x7fff8fff2ff7  com.apple.Sharing (328.17 - 328.17) <AD5E243A-B79F-3D7B-800B-A2C99A1CFEF1> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing

    0x7fff8fff3000 -     0x7fff8fff5ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib

    0x7fff901b3000 -     0x7fff901eaffb  com.apple.LDAPFramework (2.4.28 - 194.5) <CAFB9695-000F-34EA-8DF5-09996929C26A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

    0x7fff901eb000 -     0x7fff901edff7  com.apple.securityhi (9.0 - 55006) <41996F52-0848-3384-BF45-2821FB38A369> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI

    0x7fff90718000 -     0x7fff90723ff7  libkxld.dylib (2782.30.5) <14CB6513-E373-3829-AD7D-F1C15397F64F> /usr/lib/system/libkxld.dylib

    0x7fff9072f000 -     0x7fff907adfff  com.apple.CoreServices.OSServices (640.4 - 640.4) <5FDEFDEF-1BFC-3E67-9043-FA0CAA0D802E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices

    0x7fff907fb000 -     0x7fff90816ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib

    0x7fff90817000 -     0x7fff90885ffb  com.apple.Heimdal (4.0 - 2.0) <E376CB36-6A8E-36A8-88E7-D06948417D58> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal

    0x7fff90886000 -     0x7fff90898ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol

    0x7fff909ff000 -     0x7fff90a3afff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD

    0x7fff90a88000 -     0x7fff90a8aff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib

    0x7fff90aca000 -     0x7fff90aeefef  libJPEG.dylib (1238) <8CB4D185-069F-38FE-ABB9-25E514DE227D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x7fff90b21000 -     0x7fff90bdcff7  com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording

    0x7fff90bdd000 -     0x7fff90bdffff  com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin

    0x7fff90be2000 -     0x7fff90be4fff  libCVMSPluginSupport.dylib (11.1.2) <1C5C1757-67F1-3C23-90EF-643619A0E7DC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib

    0x7fff90c21000 -     0x7fff90c2dff7  libGPUSupportMercury.dylib (11.1.2) <16B2CA57-479C-3F0F-BF87-03A2C6923D5A> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib

    0x7fff90c3b000 -     0x7fff90f6cfff  com.apple.Foundation (6.9 - 1153.20) <F0FF3A5D-C5B7-34A1-9319-DE1EF928E58E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff91005000 -     0x7fff91022ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib

    0x7fff91023000 -     0x7fff91071fff  libcurl.4.dylib (83.1.2) <462767FC-C7F2-39F1-8C10-DA4114945F55> /usr/lib/libcurl.4.dylib

    0x7fff91077000 -     0x7fff91083ff7  com.apple.OpenDirectory (10.10 - 187) <2A6F3C10-71EE-3ABE-AD71-0B68F13B9C79> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

    0x7fff91087000 -     0x7fff91087fff  com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

    0x7fff91088000 -     0x7fff91100ff7  com.apple.SystemConfiguration (1.14.4 - 1.14) <E3495342-E80D-358D-9290-6C02F5F46BCA> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

    0x7fff91101000 -     0x7fff91380ffb  com.apple.RawCamera.bundle (6.06 - 819) <EDA3D142-24EC-3661-87EB-B35F8E858A9D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera

    0x7fff91381000 -     0x7fff913dcfe7  libTIFF.dylib (1238) <3DFEB4AE-3BE9-3C07-B804-921AD23FB48F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x7fff913dd000 -     0x7fff913e0fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help

    0x7fff91629000 -     0x7fff91678ff7  libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib

    0x7fff91679000 -     0x7fff916c6ff7  com.apple.print.framework.PrintCore (10.3 - 451.1) <DE992474-0841-38A1-B4F6-46D653E454D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore

    0x7fff91704000 -     0x7fff91758fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib

    0x7fff91759000 -     0x7fff91781fff  libsystem_info.dylib (459.20.1) <AEB3FE62-4763-3050-8352-D6F9AF961AE6> /usr/lib/system/libsystem_info.dylib

    0x7fff91782000 -     0x7fff9178afff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib

    0x7fff917a1000 -     0x7fff91843fff  com.apple.Bluetooth (4.3.5 - 4.3.5f8) <DB1CF332-A131-3DF1-BE85-A05594F6DA5F> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth

    0x7fff91872000 -     0x7fff918a2fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib

    0x7fff918d7000 -     0x7fff918f3ff7  libsystem_malloc.dylib (53.30.1) <DDA8928B-CC0D-3255-BD8A-3FEA0982B890> /usr/lib/system/libsystem_malloc.dylib

    0x7fff918f4000 -     0x7fff918f5ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib

    0x7fff9194f000 -     0x7fff91d5cff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib

    0x7fff91d78000 -     0x7fff91d88ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib

    0x7fff91d89000 -     0x7fff91d90fff  com.apple.NetFS (6.0 - 4.0) <C263C8F8-F284-3101-AC82-A97A81716063> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS

    0x7fff91d91000 -     0x7fff91dbcff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib

    0x7fff93649000 -     0x7fff93649fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

    0x7fff9364a000 -     0x7fff937f9fff  GLEngine (11.1.2) <8A8153B1-94CE-3EC1-9840-441DA7217BA9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine

    0x7fff938fb000 -     0x7fff93926fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib

    0x7fff93927000 -     0x7fff93a36ff3  com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv

    0x7fff93a37000 -     0x7fff94273fef  com.apple.CoreGraphics (1.600.0 - 788.2) <31A7F05E-9C68-3642-A8F0-3863777955AE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff94274000 -     0x7fff94312fff  com.apple.Metadata (10.7.0 - 917.36) <FCDD8B56-F57A-3A49-9124-CE9CEE20C502> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata

    0x7fff94497000 -     0x7fff9449fff7  com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice

    0x7fff944a3000 -     0x7fff94539ff7  com.apple.cloudkit.CloudKit (283.67.3 - 283.67.3) <45D9ADA5-E7D2-3AA0-B0BC-A836BCFBDDCA> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit

    0x7fff9453a000 -     0x7fff9454bff3  libsystem_coretls.dylib (35.30.2) <0F7BAD0C-FC28-3E4B-8D21-06B426599043> /usr/lib/system/libsystem_coretls.dylib

    0x7fff94668000 -     0x7fff946d4ff3  com.apple.MMCS (1.3 - 327.5) <FC998246-ED60-334D-9E94-453F35EF9C78> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS

    0x7fff9470c000 -     0x7fff9470cff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib

    0x7fff9470d000 -     0x7fff94710fff  com.apple.IOSurface (97.4 - 97.4) <AE11CFBC-4D46-30F3-BEEC-4C8131079391> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

    0x7fff94711000 -     0x7fff94724ff7  com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth

    0x7fff94725000 -     0x7fff9488cffb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

    0x7fff94988000 -     0x7fff949b1ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib

    0x7fff949de000 -     0x7fff94b8eff3  com.apple.QuartzCore (1.10 - 361.19) <F815B60E-75E3-3263-BE93-27A49882CF58> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

    0x7fff94b8f000 -     0x7fff94b95ff7  libsystem_networkextension.dylib (167.30.1) <3E99FF35-DCBB-3A4C-8853-F1F39A792D29> /usr/lib/system/libsystem_networkextension.dylib

    0x7fff954dc000 -     0x7fff954ddfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib

    0x7fff95757000 -     0x7fff957a8fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <450293F7-DAE7-3DD0-8F7C-71FC2FD72627> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff957a9000 -     0x7fff957e1fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices

    0x7fff957e2000 -     0x7fff95971fff  libGLProgrammability.dylib (11.1.2) <11882D43-25B4-331D-9428-C97F4A88DA21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib

    0x7fff95999000 -     0x7fff9599eff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib

    0x7fff9599f000 -     0x7fff959a6ff7  libCGCMS.A.dylib (788.2) <453CF6DA-E195-38EA-9EC1-0CC1F1698391> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib

    0x7fff959a7000 -     0x7fff959aaff7  libdyld.dylib (353.2.1) <78E8F33D-0C86-3DB6-A93D-B67A25BA3522> /usr/lib/system/libdyld.dylib

    0x7fff959fa000 -     0x7fff95b13ffb  com.apple.CoreText (352.0 - 454.9) <BBAB8852-40E5-3B76-A7AA-8098B69EF348> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText

    0x7fff95b14000 -     0x7fff95ba8fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

External Modification Summary:

  Calls made by other processes targeting this process:

    task_for_pid: 18

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

    thread_create: 0

    thread_set_state: 0

VM Region Summary:

ReadOnly portion of Libraries: Total=529.1M resident=370.1M(70%) swapped_out_or_unallocated=159.0M(30%)

Writable regions: Total=2.6G written=254.4M(10%) resident=470.0M(18%) swapped_out=1024K(0%) unallocated=2.2G(82%)

REGION TYPE                      VIRTUAL

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

ATS (font support)                 32.4M

ATS (font support) (reserved)         8K        reserved VM address space (unallocated)

CG backing stores                   9.9M

CG image                            488K

CG shared images                    464K

CoreAnimation                        48K

CoreImage                             8K

CoreUI image data                   144K

Foundation                          1.1G

IOKit                             161.0M

Image IO                           2280K

Kernel Alloc Once                     8K

MALLOC                              1.1G

MALLOC (admin)                       32K

MALLOC_LARGE (reserved)            2564K        reserved VM address space (unallocated)

Memory Tag 241                     39.2M

Memory Tag 241 (reserved)          1020K        reserved VM address space (unallocated)

Memory Tag 242                       12K

Memory Tag 251                       40K

OpenCL                               16K

OpenGL GLSL                         384K

STACK GUARD                        56.0M

Stack                              14.7M

VM_ALLOCATE                        67.1M

__DATA                             40.4M

__GLSLBUILTINS                     2588K

__IMAGE                             528K

__LINKEDIT                        131.3M

__TEXT                            397.9M

__UNICODE                           552K

mapped file                       261.7M

shared memory                         4K

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

TOTAL                               3.5G

TOTAL, minus reserved VM space      3.5G

Model: Macmini7,1, BootROM MM71.0220.B01, 2 processors, Intel Core i5, 2.8 GHz, 8 GB, SMC 2.24f32

Graphics: Intel Iris, Intel Iris, Built-In

Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444

Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444

AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x13B), Broadcom BCM43xx 1.0 (7.15.166.24.3)

Bluetooth: Version 4.3.5f8 15969, 3 services, 27 devices, 1 incoming serial ports

Network Service: Ethernet, Ethernet, en0

Serial ATA Device: APPLE SSD SM0128F, 121.33 GB

Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB

USB Device: BRCM20702 Hub

USB Device: Bluetooth USB Host Controller

USB Device: IR Receiver

USB Device: Keyboard Hub

USB Device: Apple Keyboard

USB Device: Microsoft 5-Button Mouse with IntelliEye(TM)

USB Device: Hub

Thunderbolt Bus: Mac mini, Apple Inc., 26.1

Translate
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 ,
Dec 17, 2015 Dec 17, 2015

And you're getting this error on a regular basis today, and it wasn't happening at all yesterday?

Translate
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
Valorous Hero ,
Dec 17, 2015 Dec 17, 2015

That's so uncool!

One of the basic things though which may help to prevent something like this is to wrap all of your scripts in a function closure.

Translate
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 Beginner ,
Dec 17, 2015 Dec 17, 2015

Will - If I run the script constantly for checking errors while coding.

Silly-V - No idea what function closure means but if you could give me an example and I can fix it.

Translate
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
Valorous Hero ,
Dec 17, 2015 Dec 17, 2015

Wrap any and all scripts you're working on inside a function so that the variables in it will not remain and cause problems for future script runs.

Example:
function Closure(){

     // Code goes here.

};

Closure();

But for a full topic on the above 4 lines, see this:

Understand JavaScript Closures With Ease | JavaScript is Sexy

Translate
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
Valorous Hero ,
Dec 17, 2015 Dec 17, 2015

Although, this is the very 1st google search result, and the only relevant bit is in the 1st paragraph for our purposes. The rest is web-oriented javascript drivel which only gets in the way, sometimes even confuses not only due to references to the Web DOM but also with usage of a more modern javascript implementation which is available for web browsers, while our ExtendScript is currently working off the EcmaScript 3 standard. For example, we can't use Array.indexOf() natively because it's not bult-in until EcmaScript 5, so that kind of feature has to be plopped in manually.

Translate
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 ,
Dec 17, 2015 Dec 17, 2015

isn't that just a 'wrapper' type function? I understand closures a little differently, as i've run into some issues with attempting to set onClick events to multiple document objects via a loop, and it turned out 'function closures' was the answer.

From what i read, a function closure is another name for an "IIFE" (or, immediately invoked function expression). IIFE's solve the problem of scope issues during run time (for example, attempting to set an event handler at run time, and then access the value during the event). IIFE's look like this:

(function(arg){

     //do something

     //do something else

})(arg);

I wish i could explain the underlying logic of what makes that work and how it solves any scope issues that may arise.. but it's well over my head.

Anyway, all this to say be careful when googling 'function closures' because you might get results that are very different from what Vasily is talking about.

Translate
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
Valorous Hero ,
Dec 17, 2015 Dec 17, 2015

Hmm, yea I always just thought closures were the kind which are wrapper functions, for the purposes of keeping the variables away from the global scope.

By the way, I learned through many frustrating hours about the loop element handler assignment issue and ever since then I have used the "this" keyword with some custom properties in my button to mess with the handler.

So my handler would often look like:

function myHandler(){

     alert(this.text);

};

for(var i=0; i<buttonArr.length; i++){

     buttonArr.onClick = myHandler;

};

Translate
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
Guide ,
Dec 17, 2015 Dec 17, 2015
LATEST

function closures, they can be confusing, well I find them a bit tricky.

It helps if I think of them as a partially completed function.

here is an example of the above script written with a closure.

the circle function takes the center location of the circle,

the cir function is enclosed in the circle function and takes the diameter.

so then we can declare a number of center points, and then we can add circles to these center points.

Sorry for my poor explanation...

var circle = function(x,y){

    var cir = function(d){

        var w,h

        w = h = d;

        app.activeDocument.pathItems.ellipse(x+(w/2),y-(h/2),w,h);

    }

    return cir;

}

var doc = app.activeDocument;

var AB = doc.artboards[doc.artboards.getActiveArtboardIndex()].artboardRect;

var TopLeft = circle(AB[1],AB[0]);

var TopRight = circle(AB[1],AB[2]);

var BottomLeft = circle(AB[3],AB[0]);

var BottomRight = circle(AB[3],AB[2]);

TopLeft(50);

TopLeft(18);

TopRight(18);

BottomLeft(18);

BottomRight(150);

BottomRight(100);

BottomRight(50);

BottomRight(18);

Translate
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