not saving csv files (inconsistently)

232 views
Skip to first unread message

Anneke Haddad

unread,
Jan 28, 2016, 11:32:20 AM1/28/16
to psychopy-users
Dear all,

I have a task programmed in Coder 1.83.03 running on Mac OSX.

My student tested her first two participants with this task yesterday. Unfortunately Psychopy did not save a csv or psydat file for either participant - only a log file (which for the second participant at least looks truncated). She says that for the first participant, there were no error messages and for the second, right at the end of the task (when the final 'thank you' screen was displayed), she hit escape because the task seemed to have frozen; psychopy then reported a 'fatal error' (I'm afraid she wasn't more specific than that).

We have never had this problem before. In developing and testing the experiment, we always got csv and psydat files as well as log file. And I have thus far been unable to replicate the problem on my office machine or the lab machine. 

Things I have investigated:

- Previous reports of similar problems on the list seem to relate to use of non-ASCII characters (which we are not using) or hitting the red X to abort the experiment (which my student did not do).

- The participant numbers were in the 100s, whereas we only used single digit participant numbers when testing the task. This shouldn't make a difference as it ought to be simply saved as an integer. There is a line of code that picks a particular trial order based on the participant number modulo 8 thus:

thisParticipantTrialOrder = trialOrders[(int(expInfo['participant'])-1) % 8]

...but I don't see why that should cause problems with high participant numbers - and besides, I have since tested the task with stupidly high participant numbers and had no problems.

- Is it possible that there is some computer setting (not in psychopy) that is different when my student logs into the lab machine compared to when I log into the lab machine that would cause this behaviour? I wouldn't know what setting(s) to check though.

Any hints or ideas of what I could look for to check why this occurred and prevent it from happening again would be much appreciated.

Thanks,
Anneke

Michael MacAskill

unread,
Jan 28, 2016, 5:17:35 PM1/28/16
to psychop...@googlegroups.com
Hi Anneke,

> We have never had this problem before. In developing and testing the experiment, we always got csv and psydat files as well as log file. And I have thus far been unable to replicate the problem on my office machine or the lab machine.
That's the problem right there. It points to the student, or, as you note, an issue specific to that student's configuration when logged in

> psychopy then reported a 'fatal error' (I'm afraid she wasn't more specific than that).
Doesn't give us much to go on…

> ...but I don't see why that should cause problems with high participant numbers - and besides, I have since tested the task with stupidly high participant numbers and had no problems.
Agreed, seems like a red herring.

> - Is it possible that there is some computer setting (not in psychopy) that is different when my student logs into the lab machine compared to when I log into the lab machine that would cause this behaviour? I wouldn't know what setting(s) to check though.
Differing permissions to write data files in specific locations could be problematic. You'd need to do testing logged in as the student to see if this is the issue.

Remotely, I don't think we can offer many other suggestions with the given information. My only recommendation is for you to continue to try to replicate the issues and report any possible error message, under exactly the same conditions as the student uses, while verifying her procedures. (To be honest, we have had reports of no data being written before, which did end up being due to the red "stop" button being used, despite initial definite protestations that hadn't occurred… )

Hope this gets sorted soon,

Mike

--
Michael R. MacAskill, PhD 66 Stewart St
Research Director, Christchurch 8011
New Zealand Brain Research Institute NEW ZEALAND

Senior Research Fellow, michael....@nzbri.org
Te Whare Wānanga o Otāgo, Otautahi Ph: +64 3 3786 072
University of Otago, Christchurch http://www.nzbri.org/macaskill

Richard Höchenberger

unread,
Jan 29, 2016, 5:44:33 AM1/29/16
to psychop...@googlegroups.com
Hi Anneke,

On Thu, Jan 28, 2016 at 5:32 PM, Anneke Haddad <anneke...@gmail.com> wrote:
> And I have thus far been unable to replicate the problem on my office
> machine or the lab machine.

did your student by any chance exit all experiments by pressing the escape key?

Richard

Anneke Haddad

unread,
Jan 29, 2016, 6:54:27 AM1/29/16
to psychopy-users
Hi Richard and Mike

Thanks for your replies. 


did your student by any chance exit all experiments by pressing the escape key?


She says that she did hit esc for the second participant but not the first. However, I get a csv file even when I hit esc which contains data for all the trials up to that point.

I don't think she could have pressed the red 'cancel' button as the task runs full screen and there is only one monitor, so it wouldn't have been accessible to her whilst the task was running.

I will do some further investigating (with a student log-in) and see if I can find any more clues as to what is going on.

Thanks again for your help.

Anneke

Anneke Haddad

unread,
Jan 29, 2016, 10:17:59 AM1/29/16
to psychopy-users
So even using a student log-in, we have only been able to reproduce the problem of non-saving of csv files once (out of about 15 or 20 attempts), which is pretty frustrating.

The one time it did fail to save, Psychopy produced an error message saying "Fatal Python error: (pygame parachute) Segmentation Fault"

Interestingly, we also get the same error message when running the task off a USB rather than the desktop, but at the beginning of the task rather than the end (causing Psychopy to quit out of the task), and not consistently, which is rather puzzling. We've been unable to work out a pattern to when it happens.

Strangely (no idea if it's related), hitting 'esc' (sometimes) doesn't quit the task, but rather causes Psychopy to apparently freeze. Hitting 'cmd-alt-esc' quits however, even from the 'frozen' state. There don't appear to be any problematic outcomes from hitting cmd-alt-esc (e.g., we still get the csv file), but I'm puzzled as to why this would be necessary and why 'esc' doesn't work. The code was originally compiled from Builder and then modified, so it has the lines:

#check for quit (the Esc key)
if endExpNow or event.getKeys(keyList=["escape"]):
core.quit()

... in each routine.

Interestingly, there was one occasion when the task ran through right to the end and appeared to quit properly, but the red 'cancel' button was still available. Why would that happen?

I'm completely in the dark as to what is going on here, so if anyone has any clues about anything else we could try, I'd be grateful.

System details, in case relevant

OSX 10.10.5
Processor 2.5GHz Intel core i5
Memory 4GB 1333 MHz DDR3
Graphics AMD Radeon HD 6750M 512 MB

Michael MacAskill

unread,
Jan 31, 2016, 9:44:40 PM1/31/16
to psychop...@googlegroups.com
Hi Anneke,

> Strangely (no idea if it's related), hitting 'esc' (sometimes) doesn't quit the task, but rather causes Psychopy to apparently freeze. Hitting 'cmd-alt-esc' quits however, even from the 'frozen' state. There don't appear to be any problematic outcomes from hitting cmd-alt-esc (e.g., we still get the csv file), but I'm puzzled as to why this would be necessary and why 'esc' doesn't work. The code was originally compiled from Builder and then modified, so it has the lines:
That could definitely be the problem. Is there a reason you are doing this rather than putting code into a Builder Code component? That has two very strong advantages:
— you get to keep working in the graphical Builder environment if you need to make changes.
— you know the code will be inserted in the correct place and at the appropriate indentation level.

For example:
> #check for quit (the Esc key)
> if endExpNow or event.getKeys(keyList=["escape"]):
> core.quit()
[I'm guessing the lack of indentation before "core.quit()" here is just a copy-paste error, or sell the experiment would always quit at the end of the first trial.] There is also the issue of if the entire snippet is indented to occur at the appropriate place.

There *could* be a problem here with checking for the escape key but it is hard to tell without seeing the code in the wider context of the trial. There is a common issue when people call event.getKeys() more than once per cycle. I don't know where this code sits. But getKeys() just checks if a key has been pressed since the last time this function was called. So if there has already been a call to getKeys() earlier in the cycle (and escape was pressed at that stage), that key press will be lost if the keyboard is checked again and it will seem like escape wasn't pushed at all.

The way to get around this is to store the result of the getKeys call, and/or respond to immediately. e.g. let's say you have a loop which checks the keyboard every screen refresh, then the pseudo code would look like this:

while True:
stim_1.draw()
win.flip()

response = event.getKeys(keyList=['y', 'n', 'escape'])

if 'escape' in response: # deal with the consequence now:
endExpNow = True # or simply call core.quit()
else:
# do other stuff

if endExpNow: ### DON'T check the keyboard again or the escape will be lost
core.quit()

Or alternatively, in your current structure:

while True:
stim_1.draw()
win.flip()

response = event.getKeys(keyList=['y', 'n', 'escape'])

# do some stuff

if endExpNow or 'escape' in response: ### check the STORED response
core.quit()


> Interestingly, there was one occasion when the task ran through right to the end and appeared to quit properly, but the red 'cancel' button was still available. Why would that happen?
>
> I'm completely in the dark as to what is going on here, so if anyone has any clues about anything else we could try, I'd be grateful.
That could be related to your custom code. Have you started some process or created some object that remain in existence, and won't be cleared by the standard PsychoPy quite procedure?

Regards,

Michael

Anneke Haddad

unread,
Feb 1, 2016, 9:21:22 AM2/1/16
to psychopy-users
Thanks for your reply, Michael. I'll certainly go through the code again carefully and check whether I can see any errors.  However, the reason I don't think it's a problem with the code is that we don't have any issues with running the experiment on other machines. Indeed, I've just set it up to run on a Windows 7 laptop and it seems to be fine (saves csv files and hitting esc gives expected behaviour). Also, even when hitting esc gives the unexpected freezing behaviour on the lab machine (Mac), we still get a csv file.

I'm more concerned about the error message "Fatal Python error: (pygame parachute) Segmentation Fault" which seems to be more consistently related to whether or not we get the csv file i.e., this message follows when Psychopy either fails to start the experiment at all, or else runs the experiment but fails to save the csv file. Do you have any clues as to what could be causing this?

Thanks again for your input.
Anneke

p.s., The reason I've ended up using Coder rather than Builder is that this is a modified version of another task which was too complicated to design in Builder (due to having multiple monitors with different stimuli). At the time, it seemed simpler to modify the code to create this experiment rather than start from scratch in Builder. However, I can certainly see why using Builder has significant advantages, and I am wondering if it would be worth investing the time in switching over to Builder for this particular task, given that we are having these unpredictable problems.




Anneke Haddad

unread,
Feb 3, 2016, 8:35:03 AM2/3/16
to psychopy-users
So, I rewrote the task in Builder, which I hoped would solve any issues that were related to my code. The new Builder task seemed to be running fine, but my student has just reported that she has once again failed to get a csv file for her most recent participant.

She says that when the participant got to the end of the task, she got the spinning beachball and then a pop-up window saying 'Psychopy quit unexpectedly'. I have attached a screenshot of this error message and the full text of the message is below.

Interestingly, this time she says she didn't get the message 'Fatal Python error: (pygame parachute) Segmentation Fault" which I had thought was consistently related to the non-saving of the csv file - perhaps I was wrong about that!

Michael, you asked if I started some process or created some object that remain in existence, and won't be cleared by the standard PsychoPy quit procedure - I don't know what sort of process/object this would be - perhaps it is relevant that the task uses sound files and a movie file? But surely those would be cleared by the standard quit procedure that is called by Builder at the end of the experiment?

Thanks,
Anneke

Process:               python [998]
Path:                  /Applications/PsychoPy2_1_83_03_Local.app/Contents/MacOS/python
Identifier:            org.psychopy.PsychoPy2
Version:               1.83.03 (0.0.0)
Code Type:             X86-64 (Native)
Parent Process:        PsychoPy2 [708]
Responsible:           PsychoPy2 [708]
User ID:               401609949

Date/Time:             2016-02-03 13:16:34.696 +0000
OS Version:            Mac OS X 10.10.5 (14F1509)
Report Version:        11
Anonymous UUID:        07DE6BB4-42DF-8761-CE2F-6B0CA73C9469


Time Awake Since Boot: 5500 seconds

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

Exception Type:        EXC_BAD_ACCESS (SIGABRT)
Exception Codes:       EXC_I386_GPFLT

Application Specific Information:
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib         0x00007fff8aec7286 __pthread_kill + 10
1   libsystem_c.dylib              0x00007fff91b5b9ab abort + 129
2   org.python.python              0x00000001000e8621 Py_FatalError + 49
3   libsystem_platform.dylib       0x00007fff94aebf1a _sigtramp + 26
4   libobjc.A.dylib                0x00007fff8cfb989a buildPropertyList(property_list_t const*, category_list*, signed char) + 23
5   libobjc.A.dylib                0x00007fff8cfc75bd realizeClass(objc_class*) + 2933
6   libobjc.A.dylib                0x00007fff8cfca6fd lookUpImpOrForward + 200
7   libobjc.A.dylib                0x00007fff8cfb41ac objc_msgSend + 236
8   libobjc.A.dylib                0x00007fff8cfba1b5 _class_initialize + 649
9   libobjc.A.dylib                0x00007fff8cfca777 lookUpImpOrForward + 322
10  libobjc.A.dylib                0x00007fff8cfb41ac objc_msgSend + 236
11  com.apple.AppKit               0x00007fff87b115a0 -[NSWindow dealloc] + 1330
12  com.apple.AppKit               0x00007fff878be7cc -[NSWindow release] + 193
13  libwx_osx_cocoau-3.0.0.0.0.dylib 0x000000010dbff7a4 wxFromNSPoint(NSView*, CGPoint const&) + 8004
14  libwx_osx_cocoau-3.0.0.0.0.dylib 0x000000010db2ea8f wxNonOwnedWindow::~wxNonOwnedWindow() + 63
15  libwx_osx_cocoau-3.0.0.0.0.dylib 0x000000010db2bb63 wxDialog::~wxDialog() + 115
16  libwx_osx_cocoau-3.0.0.0.0.dylib 0x000000010d9bb5be wxAppConsoleBase::DeletePendingObjects() + 46
17  libwx_osx_cocoau-3.0.0.0.0.dylib 0x000000010dc1dfb5 wxAppBase::CleanUp() + 21
18  libwx_osx_cocoau-3.0.0.0.0.dylib 0x000000010db82188 wxApp::CleanUp() + 56
19  libwx_osx_cocoau-3.0.0.0.0.dylib 0x000000010da35539 wxEntryCleanup() + 57
20  _core_.so                      0x000000010d74b039 wxPyInstance_Check(_object*) + 3545
21  org.python.python              0x00000001000c3b52 PyEval_EvalFrameEx + 26322
22  org.python.python              0x00000001000c58e3 PyEval_EvalCodeEx + 2115
23  org.python.python              0x000000010003e230 PyClassMethod_New + 800
24  org.python.python              0x000000010000c612 PyObject_Call + 98
25  org.python.python              0x00000001000bc1c7 PyEval_CallObjectWithKeywords + 87
26  org.python.python              0x00000001000e9c1a Py_Finalize + 186
27  org.python.python              0x00000001000e9726 PyModule_GetWarningsModule + 278
28  org.python.python              0x00000001000e9995 PyErr_PrintEx + 469
29  org.python.python              0x00000001000ea61b PyRun_SimpleFileExFlags + 299
30  org.python.python              0x000000010010187d Py_Main + 3101
31  python                         0x0000000100000f14 0x100000000 + 3860

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib         0x00007fff8aec8232 kevent64 + 10
1   libdispatch.dylib              0x00007fff8bd1026e _dispatch_mgr_thread + 52

Thread 2:
0   libsystem_kernel.dylib         0x00007fff8aec7136 __psynch_cvwait + 10
1   interpreter.so                 0x000000010b90a4ab th_worker(void*) + 155
2   libsystem_pthread.dylib        0x00007fff9341505a _pthread_body + 131
3   libsystem_pthread.dylib        0x00007fff93414fd7 _pthread_start + 176
4   libsystem_pthread.dylib        0x00007fff934123ed thread_start + 13

Thread 3:
0   libsystem_kernel.dylib         0x00007fff8aec7136 __psynch_cvwait + 10
1   interpreter.so                 0x000000010b90a4ab th_worker(void*) + 155
2   libsystem_pthread.dylib        0x00007fff9341505a _pthread_body + 131
3   libsystem_pthread.dylib        0x00007fff93414fd7 _pthread_start + 176
4   libsystem_pthread.dylib        0x00007fff934123ed thread_start + 13

Thread 4:
0   libsystem_kernel.dylib         0x00007fff8aec7136 __psynch_cvwait + 10
1   interpreter.so                 0x000000010b90a4ab th_worker(void*) + 155
2   libsystem_pthread.dylib        0x00007fff9341505a _pthread_body + 131
3   libsystem_pthread.dylib        0x00007fff93414fd7 _pthread_start + 176
4   libsystem_pthread.dylib        0x00007fff934123ed thread_start + 13

Thread 5:
0   libsystem_kernel.dylib         0x00007fff8aec7136 __psynch_cvwait + 10
1   interpreter.so                 0x000000010b90a4ab th_worker(void*) + 155
2   libsystem_pthread.dylib        0x00007fff9341505a _pthread_body + 131
3   libsystem_pthread.dylib        0x00007fff93414fd7 _pthread_start + 176
4   libsystem_pthread.dylib        0x00007fff934123ed thread_start + 13

Thread 6:
0   libsystem_kernel.dylib         0x00007fff8aec24de mach_msg_trap + 10
1   libsystem_kernel.dylib         0x00007fff8aec164f mach_msg + 55
2   com.apple.audio.midi.CoreMIDI  0x000000010d0e2dbb XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
3   com.apple.audio.midi.CoreMIDI  0x000000010d0fe76e MIDIProcess::RunMIDIInThread() + 112
4   com.apple.audio.midi.CoreMIDI  0x000000010d0e3e5a XThread::RunHelper(void*) + 10
5   com.apple.audio.midi.CoreMIDI  0x000000010d0e3a8b CAPThread::Entry(CAPThread*) + 109
6   libsystem_pthread.dylib        0x00007fff9341505a _pthread_body + 131
7   libsystem_pthread.dylib        0x00007fff93414fd7 _pthread_start + 176
8   libsystem_pthread.dylib        0x00007fff934123ed thread_start + 13

Thread 7:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib         0x00007fff8aec24de mach_msg_trap + 10
1   libsystem_kernel.dylib         0x00007fff8aec164f mach_msg + 55
2   com.apple.audio.CoreAudio      0x00007fff9346f544 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
3   com.apple.audio.CoreAudio      0x00007fff9346f4d2 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
4   com.apple.audio.CoreAudio      0x00007fff9346da05 HALC_ProxyIOContext::IOWorkLoop() + 1089
5   com.apple.audio.CoreAudio      0x00007fff9346d4f2 HALC_ProxyIOContext::IOThreadEntry(void*) + 88
6   com.apple.audio.CoreAudio      0x00007fff9346d3c3 HALB_IOThread::Entry(void*) + 157
7   libsystem_pthread.dylib        0x00007fff9341505a _pthread_body + 131
8   libsystem_pthread.dylib        0x00007fff93414fd7 _pthread_start + 176
9   libsystem_pthread.dylib        0x00007fff934123ed thread_start + 13

Thread 8:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib         0x00007fff8aec24de mach_msg_trap + 10
1   libsystem_kernel.dylib         0x00007fff8aec164f mach_msg + 55
2   com.apple.audio.CoreAudio      0x00007fff9346f544 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
3   com.apple.audio.CoreAudio      0x00007fff9346f4d2 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
4   com.apple.audio.CoreAudio      0x00007fff9346da05 HALC_ProxyIOContext::IOWorkLoop() + 1089
5   com.apple.audio.CoreAudio      0x00007fff9346d4f2 HALC_ProxyIOContext::IOThreadEntry(void*) + 88
6   com.apple.audio.CoreAudio      0x00007fff9346d3c3 HALB_IOThread::Entry(void*) + 157
7   libsystem_pthread.dylib        0x00007fff9341505a _pthread_body + 131
8   libsystem_pthread.dylib        0x00007fff93414fd7 _pthread_start + 176
9   libsystem_pthread.dylib        0x00007fff934123ed thread_start + 13

Thread 9:
0   libsystem_kernel.dylib         0x00007fff8aec794a __workq_kernreturn + 10
1   libsystem_pthread.dylib        0x00007fff934123dd start_wqthread + 13

Thread 10:
0   libsystem_kernel.dylib         0x00007fff8aec794a __workq_kernreturn + 10
1   libsystem_pthread.dylib        0x00007fff934123dd start_wqthread + 13

Thread 11:
0   libsystem_kernel.dylib         0x00007fff8aec794a __workq_kernreturn + 10
1   libsystem_pthread.dylib        0x00007fff934123dd start_wqthread + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfe5e8  rdx: 0x0000000000000000
  rdi: 0x0000000000000513  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfe610  rsp: 0x00007fff5fbfe5e8
   r8: 0x00007fff5fbfe600   r9: 0x00007fff77d53300  r10: 0x0000000008000000  r11: 0x0000000000000206
  r12: 0x00007ffffffffff8  r13: 0x0000000000000000  r14: 0x00007fff77d53300  r15: 0x7000000010eda3e4
  rip: 0x00007fff8aec7286  rfl: 0x0000000000000206  cr2: 0x00007fff77895fd8
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133


Binary Images:
       0x100000000 -        0x100000fff +python (???) <DA2FF3FB-F70D-A899-1829-4F86802713E0> /Applications/PsychoPy2_1_83_03_Local.app/Contents/MacOS/python
       0x100003000 -        0x100170fff +org.python.python (2.7.10, [c] 2001-2015 Python Software Foundation. - 2.7.10) <5E0C1150-83D5-6364-A820-E7AD67962D79> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/Python.framework/Versions/2.7/Python
       0x1002f4000 -        0x1002f7ff7 +zlib.so (???) <12C16873-489B-8E55-C1D2-5EB477A8F1D2> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/zlib.so
       0x1002fb000 -        0x1002fdff7 +_locale.so (???) <3C1429AD-B0EF-96BF-9E7E-2F7B48975B36> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_locale.so
       0x1006f0000 -        0x1006f3ff7 +strop.so (???) <DF06827C-A0D5-7DCB-5D20-BDB61A7DFC75> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/strop.so
       0x1006f7000 -        0x1006f8ff7 +_functools.so (???) <B244B1EE-CF41-5024-567B-7B16A29AFDCD> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_functools.so
       0x1006fb000 -        0x1006fcfff +cStringIO.so (???) <FF055C24-DACC-8F6A-7356-D0B5E7570159> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/cStringIO.so
       0x102a40000 -        0x102a49ff7 +_socket.so (???) <94749738-BA18-A216-6A7F-55D071D15DE4> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_socket.so
       0x102a51000 -        0x102a5dff7 +_ssl.so (???) <AD92B978-4D10-5236-17BE-4EA6FBAA1CB5> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_ssl.so
       0x102a66000 -        0x102a9cff7  libssl.0.9.8.dylib (52.40.1) <0121FFA1-8332-39FF-9542-3E80BBC323D7> /usr/lib/libssl.0.9.8.dylib
       0x102ab2000 -        0x102ab4ff7 +time.so (???) <27C9305F-C19D-5993-A8E3-109D23D2CEAF> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/time.so
       0x102ab9000 -        0x102abdff7 +_struct.so (???) <64EE7F15-2E51-5C5C-C16C-E9BB3C97ED39> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_struct.so
       0x102ac2000 -        0x102ac4fef +binascii.so (???) <FDA32540-AD7E-87FC-B2B4-48C7B2988D6A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/binascii.so
       0x102ac7000 -        0x102acbfff +_collections.so (???) <F1747E9E-14CD-02BB-18FD-4CE3FB96333B> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_collections.so
       0x102ad0000 -        0x102ad4fff +operator.so (???) <190CDC00-0310-450B-A897-6315E35F0E0A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/operator.so
       0x102ad9000 -        0x102ae0ff7 +itertools.so (???) <DCEB33E4-16B8-5F79-F0F0-D0B3C3738CF8> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/itertools.so
       0x102ae8000 -        0x102ae9fff +_heapq.so (???) <9B0FB389-F635-D9B4-C717-710A3B07B757> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_heapq.so
       0x102aed000 -        0x102aedfff +_scproxy.so (???) <EBA89040-CB06-669B-BAE4-6C7FFFB58E2E> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_scproxy.so
       0x102bb0000 -        0x102bbcff7 +parser.so (???) <D724ED9D-D344-5930-D50D-3254E31E52AA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/parser.so
       0x102c7f000 -        0x102c82fff +select.so (???) <C608B013-F24A-CE1B-46AF-04312C8A5E48> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/select.so
       0x102c87000 -        0x102c88ff7 +fcntl.so (???) <FC91B3D9-F64D-0D7E-FCD1-F0D83AC87C21> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/fcntl.so
       0x102c8b000 -        0x102ca1fff +_ctypes.so (???) <695ABD4A-82D5-4EF2-91B5-060BC98296E9> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_ctypes.so
       0x102ceb000 -        0x102cf9ff7 +datetime.so (???) <B2C63594-8B80-477A-A1B2-6802DD515CB3> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/datetime.so
       0x102d00000 -        0x102d34fe7 +pyexpat.so (???) <DD4C628B-44DD-4680-A96C-B7236BA62FAC> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/pyexpat.so
       0x102fac000 -        0x102fb1fe7 +math.so (???) <C8A4FE9B-F333-86F8-5ADC-552A96ABFFEF> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/math.so
       0x102fb5000 -        0x103100ff7 +multiarray.so (???) <0A5C7B49-CE4B-3B1E-8A39-4BAB12571409> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/numpy/core/multiarray.so
       0x10312d000 -        0x1031acfff +umath.so (???) <1A7336C9-2CB5-3B8F-B332-22120D4B49F4> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/numpy/core/umath.so
       0x1031bb000 -        0x1031cbfff +cPickle.so (???) <57783A2B-2DCC-92EF-325E-C8AC6A3D9512> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/cPickle.so
       0x1031d0000 -        0x1031d0fff +grp.so (???) <E7F248B2-F6C5-F4BA-DF80-300A33B63403> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/grp.so
       0x1031d3000 -        0x1031e8ff7 +_io.so (???) <2C4B0AB6-383E-E0D9-F137-3AA6A6B05252> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_io.so
       0x1031f7000 -        0x1031f8fff +_hashlib.so (???) <E7D476F5-4F1B-EFDB-CB06-3C2B7DE16A92> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_hashlib.so
       0x1031fb000 -        0x1031fcfff +_random.so (???) <1F0213AF-3068-A3A3-5A08-6BFB4DF10330> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_random.so
       0x103300000 -        0x103301ff7 +lapack_lite.so (???) <9167E8AD-78A5-370C-A25C-77881E6F7E11> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/numpy/linalg/lapack_lite.so
       0x103304000 -        0x103319ff7 +_umath_linalg.so (???) <54A855AC-EC5D-3586-9B0F-D7E31C6929DA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/numpy/linalg/_umath_linalg.so
       0x103320000 -        0x103320fff +future_builtins.so (???) <DE05C4C9-FEDD-BB4E-CD0A-19DA31337569> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/future_builtins.so
       0x103323000 -        0x10332bfff +fftpack_lite.so (???) <CAB9F8DC-F783-3837-8FF1-6429583043ED> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/numpy/fft/fftpack_lite.so
       0x10336e000 -        0x1033d7ff7 +mtrand.so (???) <CF0E03A2-FE7F-3C00-B78A-7F5A8AD51C93> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/numpy/random/mtrand.so
       0x1034cf000 -        0x1034d0fff +termios.so (???) <1E22A303-2481-2B18-5529-3BB16EC06E5E> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/termios.so
       0x103514000 -        0x10351afff +minpack2.so (???) <00719268-1389-33CA-B6C2-E5D815D8FF73> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/minpack2.so
       0x10351d000 -        0x1035d3fcf +libgfortran.2.0.0.dylib (3) <ACF1816E-EA8A-4DB9-A893-A4EF0CEFFFBA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/.dylibs/libgfortran.2.0.0.dylib
       0x1035e2000 -        0x1035eefb1 +libgcc_s.1.dylib (1) <BBB4EAFF-D7EC-4B7A-9AED-C5BB3003BDE0> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/.dylibs/libgcc_s.1.dylib
       0x103632000 -        0x10366bff7 +_fblas.so (???) <DF9E5879-FCAF-3903-9584-DB9BB1CD39CA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/linalg/_fblas.so
       0x103687000 -        0x1036ffff7 +_flapack.so (???) <7647099E-387F-38F6-832C-7D5B87AD203F> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/linalg/_flapack.so
       0x10373e000 -        0x103748ff7 +_flinalg.so (???) <43F4D36E-F9AD-3587-A8E5-DC430940A2DE> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/linalg/_flinalg.so
       0x10374e000 -        0x103771fff +_solve_toeplitz.so (???) <6BA9BEA6-5537-3227-97E8-04F1D51978AD> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/linalg/_solve_toeplitz.so
       0x1037ba000 -        0x1037f3ff7 +_decomp_update.so (???) <6C933F77-2747-38B3-BE34-63B3958333B0> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/linalg/_decomp_update.so
       0x103800000 -        0x103826fff +cython_blas.so (???) <29ED3D83-B1FC-30C8-BAD0-3368EAB885D1> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/linalg/cython_blas.so
       0x103830000 -        0x10389fff7 +cython_lapack.so (???) <27AD4E14-78ED-3E32-A0C3-3B192B98C697> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/linalg/cython_lapack.so
       0x1038b7000 -        0x1038d1ff7 +_lbfgsb.so (???) <2B7925E9-1EF3-38E9-A4F7-969C46025988> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/_lbfgsb.so
       0x103915000 -        0x103bb4ff7 +_sparsetools.so (???) <9C0B8F3A-8597-3550-A3B5-40FD5042D769> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/_sparsetools.so
       0x103c15000 -        0x103c73fff +_csparsetools.so (???) <CD37683F-39BD-3352-862F-BB152F8B8462> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/_csparsetools.so
       0x103cbd000 -        0x103cf2ff7 +_shortest_path.so (???) <9F9E87E7-172C-3401-BFA1-F322878C1139> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/csgraph/_shortest_path.so
       0x103cfb000 -        0x103d15ff7 +_tools.so (???) <4309F38C-B34A-3DF5-8C39-137BD503E5AA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/csgraph/_tools.so
       0x103d1d000 -        0x103d38fff +_traversal.so (???) <465FB047-84E7-3306-893A-48FB272B4384> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/csgraph/_traversal.so
       0x103d41000 -        0x103d4cff7 +_min_spanning_tree.so (???) <58CDBCCD-AF36-382E-8119-6E294A08AA94> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/csgraph/_min_spanning_tree.so
       0x103d52000 -        0x103d88fff +_reordering.so (???) <04C15826-2847-307E-A907-96CD8CA7A540> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/csgraph/_reordering.so
       0x103d92000 -        0x103dbefff +_iterative.so (???) <D1F249A2-771B-33ED-89BD-83BC2FA69E79> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/linalg/isolve/_iterative.so
       0x103e0c000 -        0x103e56fff +_superlu.so (???) <2F4DC8AF-44C9-3F3F-9CC8-A5926E5299E4> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/linalg/dsolve/_superlu.so
       0x103e60000 -        0x103ee3fff +_arpack.so (???) <61D77FE2-7BE9-3EE8-B714-F39CC1FFCD87> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/sparse/linalg/eigen/arpack/_arpack.so
       0x103f35000 -        0x10404efff +_ufuncs.so (???) <22F63FD1-00CC-3894-91E2-4911A4107586> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/special/_ufuncs.so
       0x104070000 -        0x104080ff7 +_ufuncs_cxx.so (???) <5C6D02A1-249B-30F3-AA91-C009FCD7EAD8> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/special/_ufuncs_cxx.so
       0x104086000 -        0x104138fef +specfun.so (???) <C9387E96-CED0-379E-BE1C-72C10FF1C10B> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/special/specfun.so
       0x104144000 -        0x104151ff7 +_ellip_harm_2.so (???) <F0D38129-E199-362F-BA1C-4B9C9A40EFB4> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/special/_ellip_harm_2.so
       0x104156000 -        0x104177fe7 +_odepack.so (???) <F3F76BAD-72E9-3262-97AE-B5B0788B9F0A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/integrate/_odepack.so
       0x1041bc000 -        0x1041d5fe7 +_quadpack.so (???) <A00AA195-AC5D-34A1-9BB2-CA44BF2CC01C> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/integrate/_quadpack.so
       0x1041d8000 -        0x104200fff +vode.so (???) <5B96AB84-1955-3B5C-8530-C7DD7E67AFCE> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/integrate/vode.so
       0x104205000 -        0x104218ff7 +_dop.so (???) <DA7539DE-D121-38E9-A2A7-8AD7D4A07F67> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/integrate/_dop.so
       0x10421d000 -        0x104241fef +lsoda.so (???) <D3CAAA68-D5DC-3C2E-BB30-7595257F5251> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/integrate/lsoda.so
       0x104246000 -        0x104282fff +_imaging.so (???) <CBF64659-042F-340B-BEA6-3DBE50549559> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/PIL/_imaging.so
       0x104290000 -        0x1042e4ff7 +libjpeg.9.dylib (0) <4565B105-1244-3742-BB6A-E87EE748889A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/PIL/.dylibs/libjpeg.9.dylib
       0x1042e9000 -        0x104304ff7 +libz.1.2.8.dylib (0) <1C6CB2EB-F6A6-3586-9932-D7C28B3C519F> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/PIL/.dylibs/libz.1.2.8.dylib
       0x104308000 -        0x104361ff7 +libtiff.5.dylib (0) <0601B3BF-B13F-3400-A1B1-069E55830157> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libtiff.5.dylib
       0x10436b000 -        0x104397fff +libjpeg.8.dylib (0) <7A528846-854A-370E-AE9A-EEA0842EEC9C> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libjpeg.8.dylib
       0x10445f000 -        0x104467fff +moduleTNC.so (???) <0A415AD5-5B21-3983-8707-3587370DBBCF> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/moduleTNC.so
       0x10446a000 -        0x104480ff7 +_cobyla.so (???) <80E2C4A7-9A50-335B-938B-D925B35A055C> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/_cobyla.so
       0x104484000 -        0x104496fff +_slsqp.so (???) <B59B9C7C-42B3-3F47-A81D-27B02E5CB806> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/_slsqp.so
       0x10449a000 -        0x1044b2ff7 +_minpack.so (???) <E122EDEA-E275-3271-91C1-24AF4781C97B> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/_minpack.so
       0x1044f5000 -        0x1044f6ff7 +_zeros.so (???) <47FF5193-DE55-35FD-ACF0-85CF05515F06> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/_zeros.so
       0x1044f9000 -        0x1044fcfff +_multiprocessing.so (???) <F912F1D5-7431-8649-7911-FF7E1763F7CA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_multiprocessing.so
       0x104900000 -        0x104908ff7 +_nnls.so (???) <BCFA4612-F0C7-36EC-91D9-863E1B84F823> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/optimize/_nnls.so
       0x10490b000 -        0x10493aff7 +_fitpack.so (???) <6041785B-5437-34E6-94FF-19C3C83F6862> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/interpolate/_fitpack.so
       0x10497d000 -        0x1049d1ff7 +dfitpack.so (???) <CDD0047B-C2EE-3565-961B-39F956D5E09A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/interpolate/dfitpack.so
       0x1049db000 -        0x104a0dfff +_ppoly.so (???) <5DD34459-0AD0-3224-9230-741B115CB306> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/interpolate/_ppoly.so
       0x104a17000 -        0x104a55ff7 +interpnd.so (???) <1341DE00-38C6-32AC-BF0D-90DE9FFEBDB1> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/interpolate/interpnd.so
       0x104a60000 -        0x104a98ff7 +ckdtree.so (???) <8BEB8536-87D2-3344-8F9C-119C69DF4087> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/spatial/ckdtree.so
       0x104ae3000 -        0x104b90fff +qhull.so (???) <4CA5A4C3-29B8-39A1-832E-30518A1A7F96> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/spatial/qhull.so
       0x104ba6000 -        0x104baeff7 +_distance_wrap.so (???) <A308388E-36BE-3957-82DA-3E0321CD4825> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/spatial/_distance_wrap.so
       0x104c71000 -        0x104c75ff7 +base.so (0) <673BCD22-C250-3361-AADD-35171E220B2F> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/base.so
       0x104c79000 -        0x104cb2ff7 +libSDL-1.2.0.dylib (0) <6683A094-A8AC-3895-83B3-F8B31D758AAC> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libSDL-1.2.0.dylib
       0x104cbe000 -        0x104cc0ff7 +constants.so (0) <CDA0A0BC-4FA9-34E2-A7F3-AAB025FB8EE5> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/constants.so
       0x104cc3000 -        0x104cc6fff +rect.so (0) <38A0F9F2-40AE-3657-8C37-71F5489F3B87> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/rect.so
       0x104cc9000 -        0x104ccaff7 +rwobject.so (0) <7675D2A8-AD59-3194-B764-54247A2F291D> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/rwobject.so
       0x104ccd000 -        0x104ccdff7 +surflock.so (0) <C04B7A52-91A5-3A95-B878-B196B663ECEA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/surflock.so
       0x104cd0000 -        0x104cd3fff +color.so (0) <441A4EA3-0FB9-39B0-888B-C709A7B7AD16> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/color.so
       0x104cd6000 -        0x104cd8fff +bufferproxy.so (0) <97884193-A7C5-3027-884E-70C05B5C4246> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/bufferproxy.so
       0x104cdb000 -        0x104ce4fff +math.so (0) <451FF9BD-EF8F-30D6-BFD3-DABDAFE31CBD> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/math.so
       0x104ce9000 -        0x104cebff7 +cdrom.so (0) <5EBED5EB-AFBF-3F73-8658-649EBAF983B9> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/cdrom.so
       0x104cee000 -        0x104cf1ff7 +display.so (0) <7D484E06-DD84-3391-BAB8-42380B520C28> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/display.so
       0x104cf5000 -        0x104d2ffff +surface.so (0) <00E4551E-8AF0-3B85-82F4-BB62B9A37E08> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/surface.so
       0x104d33000 -        0x104d39fff +draw.so (0) <6F5EBF08-4208-35D7-A5C7-650223283995> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/draw.so
       0x104d3c000 -        0x104d3eff7 +event.so (0) <81BAEDA2-2BA1-3BAA-9819-464785868438> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/event.so
       0x104d41000 -        0x104d45ff7 +image.so (0) <59F5FF45-5322-3788-B1B7-231C10617886> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/image.so
       0x104d48000 -        0x104d4afff +imageext.so (0) <78AEFD5B-9ED8-30DC-9E42-FD9478BD49F8> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/imageext.so
       0x104d4e000 -        0x104d56ff7 +libSDL_image-1.2.0.dylib (0) <81F5972A-1E60-3734-9BC4-15C7F761F9E5> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libSDL_image-1.2.0.dylib
       0x104d5a000 -        0x104d7dff7 +libpng16.16.dylib (0) <78FA9D5B-C0BB-3B57-AA91-B092AE7A58FF> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libpng16.16.dylib
       0x104d84000 -        0x104d85fff +joystick.so (0) <C2843FDD-DC80-3C13-A047-E6786B5D7A8A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/joystick.so
       0x104d88000 -        0x104d88fff +key.so (0) <20C9A69A-4DB2-3819-994E-C5A4C4611577> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/key.so
       0x104d8b000 -        0x104d8cff7 +mouse.so (0) <5DB16877-42F9-3788-AB9C-9A64949C7BC6> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/mouse.so
       0x104d8f000 -        0x104d90ff7 +time.so (0) <5810C2CD-67B7-3DF5-B943-0E489CCE67B2> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/time.so
       0x104d93000 -        0x104d99ff7 +mask.so (0) <8C74B04F-734B-3560-865B-9CA2D7DF6BAB> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/mask.so
       0x104d9c000 -        0x104da1fff +pixelcopy.so (0) <CE060011-D149-3878-A4CC-A6330122E96C> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/pixelcopy.so
       0x104da4000 -        0x104daafff +pixelarray.so (0) <CD99E5BE-ED58-3D60-BDEE-66634B63525F> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/pixelarray.so
       0x104dae000 -        0x104daffff +overlay.so (0) <6ECCB89B-3AA7-350A-9E73-0330717AE329> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/overlay.so
       0x104db2000 -        0x104dbbfff +transform.so (0) <F443B773-1D38-3538-86A1-EDF2C3F6287A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/transform.so
       0x104dbf000 -        0x104dc1fff +font.so (0) <1F9C74E7-BFED-3D98-A544-BD6259712DC5> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/font.so
       0x104dc5000 -        0x104dcafff +libSDL_ttf-2.0.0.dylib (0) <0224F815-4F08-3919-8F0D-E301467E5908> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libSDL_ttf-2.0.0.dylib
       0x104dce000 -        0x104e3cff7 +libfreetype.6.dylib (0) <B41BFD67-7DD6-3F26-829A-1789523122FC> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libfreetype.6.dylib
       0x104e4a000 -        0x104e4bff7 +mixer_music.so (0) <740C5200-08D3-3959-AEBF-F12939C7ABB8> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/mixer_music.so
       0x104e4e000 -        0x104e66fff +libSDL_mixer-1.2.0.dylib (0) <60707ED9-1A08-3B20-B9CF-6DF985CDFBAC> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libSDL_mixer-1.2.0.dylib
       0x104e97000 -        0x104e9bfff +mixer.so (0) <FF2214A4-EC23-366D-B8BC-D0C31F29E791> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/mixer.so
       0x104e9f000 -        0x104e9ffff +scrap.so (0) <EB268DC0-A149-394D-B1EB-6691FEC239F6> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/scrap.so
       0x104ea2000 -        0x104ea3ff7 +fastevent.so (0) <84C498A7-2460-3C6B-A5C1-57338B287419> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pygame/fastevent.so
       0x104ea6000 -        0x104eaafff  com.apple.agl (3.3.0 - AGL-3.3.0) <4E8F579B-A2E2-3A27-96D7-02A9465A78D8> /System/Library/Frameworks/AGL.framework/AGL
       0x107598000 -        0x10762cfef +unicodedata.so (???) <D17EAAAD-AFB9-71F5-0890-A9DF68294CB2> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/unicodedata.so
       0x109100000 -        0x10939afff  com.apple.AMDRadeonX3000GLDriver (1.32.25 - 1.3.2) <DCAF2C03-ACC9-361A-AD5F-9F6B91575D64> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRadeonX3000GLDriver
       0x10940b000 -        0x10940bfff +_bisect.so (???) <731D2098-89EF-6370-0559-F7D1329EE6D5> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_bisect.so
       0x10944e000 -        0x109451ff7 +_csv.so (???) <C1F87944-B1A0-9D81-6941-C41DBADE8DEF> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_csv.so
       0x109455000 -        0x109469ff7 +json.so (???) <5101F879-B2D4-3ABD-8698-76396541B305> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/json.so
       0x10946f000 -        0x109479fff +_testing.so (???) <9A63DB2B-54D1-3C22-8180-F2923A5CFA2E> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/_testing.so
       0x10947e000 -        0x109482fff +futil.so (???) <C2CF0FC2-14C4-3252-AE59-91D253AF8C79> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/stats/futil.so
       0x109485000 -        0x109488fff +libogg.0.dylib (0) <2E668F3B-0CB8-35A6-842D-1EBA99391E23> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libogg.0.dylib
       0x1094cd000 -        0x1094d2fff +array.so (???) <A2EAB2EF-B531-7080-EB76-D41CC9BA2159> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/array.so
       0x1094db000 -        0x1094f6fff +msgpack.so (???) <922D21FE-F21F-3143-ACC5-D482CB9ED9AB> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/msgpack.so
       0x10abef000 -        0x10abf7fff +statlib.so (???) <5DF5B0DD-DFF6-3134-9179-1F4A270F1D79> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/stats/statlib.so
       0x10ad00000 -        0x10ad38fff +_path.so (???) <C86846EF-0182-3825-B41A-6E8BB21D7F1A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/matplotlib/_path.so
       0x10b1c9000 -        0x10b20bff7 +hashtable.so (???) <C240E7F3-A017-32E6-AD12-EC8F286F5E6E> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/hashtable.so
       0x10b214000 -        0x10b33efff +tslib.so (???) <19A40F33-6E9C-3EC5-B6ED-A61653D7019A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/tslib.so
       0x10b359000 -        0x10b450ff7 +lib.so (???) <0C27A547-C076-3D2D-973E-749E8F8ED4CE> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/lib.so
       0x10b467000 -        0x10b6a8fff +algos.so (???) <AABD87B5-B70F-3F71-B12D-F7DEF75EAE9D> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/algos.so
       0x10b6c4000 -        0x10b6fcfe7 +index.so (???) <0B5FC12A-27EE-319C-82DD-FB27CBA6C2F5> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/index.so
       0x10b704000 -        0x10b75aff7 +_period.so (???) <7B2E518F-BF77-3BC0-896F-41C08C1F706C> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/_period.so
       0x10b769000 -        0x10b7a8fff +_sparse.so (???) <7AE5BF5C-584C-35AB-A138-25FB366A03E5> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/_sparse.so
       0x10b8f1000 -        0x10b910fff +interpreter.so (0) <B89B7B95-B465-350E-865B-53C32AC104DD> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/numexpr/interpreter.so
       0x10be05000 -        0x10be66fef +parser.so (???) <8F2F62DC-96FD-341D-B67B-2AF08569D61A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/pandas/parser.so
       0x10bff1000 -        0x10bff9fff +_elementtree.so (???) <72C6F3A6-2BCC-455A-9AF2-2FE279B64335> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_elementtree.so
       0x10c140000 -        0x10c14dff7 +vonmises_cython.so (???) <CFA60619-B460-32C4-951A-E4E8650FCD29> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/stats/vonmises_cython.so
       0x10c252000 -        0x10c266ff7 +_rank.so (???) <D81FB3F9-D23C-32BB-8F27-4911B462EFFA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/stats/_rank.so
       0x10c2ed000 -        0x10c2f4fff +libportmidi.dylib (0) <48261621-528B-38BE-AA17-0BEB57ACD871> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libportmidi.dylib
       0x10c400000 -        0x10c40eff7 +mvn.so (???) <FB8900F9-963B-3629-AC44-EB53DA0A0434> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/scipy/stats/mvn.so
       0x10c50a000 -        0x10c8e6fff +etree.so (???) <12F859B9-52DD-3B51-838B-E49A13459884> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lxml/etree.so
       0x10c9d2000 -        0x10c9e1ff7 +libportaudio.2.dylib (0) <7EA457D3-022E-3974-BBFA-DC75FAF91023> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libportaudio.2.dylib
       0x10c9e6000 -        0x10c9effff +liblo.7.dylib (0) <E644C3EC-5F7A-3492-B1AA-759AD83C0614> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/liblo.7.dylib
       0x10c9fe000 -        0x10c9feff5 +cl_kernels (???) <158CFB70-E16D-4BC0-9C66-E964FAA8EA49> cl_kernels
       0x10cdb0000 -        0x10d005ff7 +_pyo.so (???) <FE0DA2F3-23F1-30F2-AA49-2EF76BF3BB99> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_pyo.so
       0x10d07b000 -        0x10d0c7ff7 +libsndfile.1.dylib (0) <4C956B42-BF3C-3008-85D0-09B0DFF69565> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libsndfile.1.dylib
       0x10d0d5000 -        0x10d10cfff  com.apple.audio.midi.CoreMIDI (1.10 - 88) <4BBCD304-C28F-3C03-AEB8-5E3D5D030602> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
       0x10d133000 -        0x10d156fff +libFLAC.8.dylib (0) <A87F2E9F-543C-3773-AD94-8D8484FB63DB> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libFLAC.8.dylib
       0x10d161000 -        0x10d185fff +libvorbis.0.dylib (0) <03338EFC-B471-315E-A8B2-AB5EC32D9EEA> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libvorbis.0.dylib
       0x10d18a000 -        0x10d201fff +libvorbisenc.2.dylib (0) <48DF0100-02A7-3128-A4D9-99054810FB08> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libvorbisenc.2.dylib
       0x10d25b000 -        0x10d264ff7 +_tkinter.so (???) <0FC36FE0-C9EA-D1B7-7FD5-4DD45F7D3983> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/lib-dynload/_tkinter.so
       0x10d31c000 -        0x10d3e9fff  Tcl (8.5.9 - 8.5.9) <7C2A7E71-4614-3716-B87F-00FCC6A58D8E> /System/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl
       0x10d408000 -        0x10d4f2fff  Tk (8.5.9 - 8.5.9) <D6939B55-F83C-30B8-9F16-27B46F693E8E> /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk
       0x10d734000 -        0x10d8ebff7 +_core_.so (???) <4B1A0D21-BBDA-7017-C3DE-AE5D0AB4CD87> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/wx/_core_.so
       0x10d947000 -        0x10e7e9fe7 +libwx_osx_cocoau-3.0.0.0.0.dylib (1) <D6CDE857-DC5D-E401-72BA-322A2C1347B4> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Frameworks/libwx_osx_cocoau-3.0.0.0.0.dylib
       0x10ecfd000 -        0x10ecfdfef +cl_kernels (???) <FBDC560D-B847-4182-AD62-8DA82126D0CD> cl_kernels
       0x10f000000 -        0x10f124fff +_gdi_.so (???) <1F66EFCB-D195-3BEF-59EB-E2A65579A25A> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/wx/_gdi_.so
       0x10f22b000 -        0x10f340ff7 +_windows_.so (???) <EC8DAEE1-5D13-BD80-22B4-BA644E174CED> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/wx/_windows_.so
       0x10f4e5000 -        0x10f661ff7 +_controls_.so (???) <EE0A6664-1A9D-753D-1359-8D0D53871D74> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/wx/_controls_.so
       0x110080000 -        0x1101a0fff +_misc_.so (???) <06C1428C-5D7B-FFFA-404D-AB76B4103FE1> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/wx/_misc_.so
       0x112a9b000 -        0x112b81fef  unorm8_bgra.dylib (2.4.5) <5F488C7E-2FB2-3C66-9764-28CF16B03E7A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
       0x113a60000 -        0x113a64ffb  libFontRegistryUI.dylib (134.1) <0E0D303E-2A48-340F-94A2-EEC3832E5895> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
       0x113d0a000 -        0x113d0efff  com.apple.audio.AppleHDAHALPlugIn (272.18.3 - 272.18.3) <D40CF081-95C3-3B08-B43F-8A84B579195B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x117900000 -        0x117cdcff7 +libfreeimage-3.16.0-osx10.6.dylib (3.16) <0EB7A992-2CFA-1894-069A-7E85B23C089E> /Applications/PsychoPy2_1_83_03_Local.app/Contents/Resources/lib/python2.7/imageio/resources/freeimage/libfreeimage-3.16.0-osx10.6.dylib
    0x7fff5fd5e000 -     0x7fff5fd94887  dyld (353.2.3) <D9967621-6378-381B-A47B-5085EE476B62> /usr/lib/dyld
    0x7fff85ed1000 -     0x7fff86202fff  com.apple.Foundation (6.9 - 1154) <49EE64E1-9F53-35D1-A481-2EFE2789B254> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff86203000 -     0x7fff8622ffff  libsandbox.1.dylib (358.20.5) <533B9C4A-6C92-3658-95B9-D30BC135796B> /usr/lib/libsandbox.1.dylib
    0x7fff86233000 -     0x7fff86365ff7  com.apple.MediaControlSender (2.0 - 215.18) <88726256-A71E-33A8-A56C-ABA208951C92> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
    0x7fff86467000 -     0x7fff866ddfff  com.apple.security (7.0 - 57031.40.8) <A7C482D3-7D46-3D56-BC26-FE61C82561DA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff866de000 -     0x7fff866e0fff  libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff866e1000 -     0x7fff866e1fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff866e2000 -     0x7fff866edff7  libcsfde.dylib (471.30.1) <A62AE3D8-E2A6-314A-BF45-804003BE0AC9> /usr/lib/libcsfde.dylib
    0x7fff866ee000 -     0x7fff86704ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff86733000 -     0x7fff8678eff7  libTIFF.dylib (1241) <4FADAE48-44A5-351D-A33F-211A9544E5A9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8678f000 -     0x7fff86790fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
    0x7fff86791000 -     0x7fff8679fff7  com.apple.opengl (11.1.6 - 11.1.6) <978AE645-3D2E-39B2-AFF6-A0753BF2B156> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff867d3000 -     0x7fff868bdff7  com.apple.QuickLookUIFramework (5.0 - 675.43) <011DEB49-0FB3-3E44-9D99-D89ADD59A3CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff868be000 -     0x7fff868ceff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
    0x7fff868cf000 -     0x7fff86de4ffb  com.apple.JavaScriptCore (10600 - 10600.8.7) <480CDC12-5A1C-321C-B32F-673F0B3BA8F9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff86de5000 -     0x7fff86f0dff7  com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff86fd7000 -     0x7fff87006ff7  com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <B93D4775-149C-3698-B38C-9C50673D455C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff87007000 -     0x7fff8704dff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x7fff8704e000 -     0x7fff87056ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
    0x7fff87208000 -     0x7fff87259ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <17C35538-7C2B-3735-A1B3-E8487EED0668> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8725a000 -     0x7fff87261fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
    0x7fff8727a000 -     0x7fff8742aff3  com.apple.QuartzCore (1.10 - 361.19) <F815B60E-75E3-3263-BE93-27A49882CF58> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8742b000 -     0x7fff8753aff3  com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff87585000 -     0x7fff875a5fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff875a6000 -     0x7fff8788dffb  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
    0x7fff8788e000 -     0x7fff8840fff7  com.apple.AppKit (6.9 - 1348.17) <E485D56D-3E72-34B7-99BB-BFDEE2D07BF5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff88410000 -     0x7fff88429ff7  com.apple.CFOpenDirectory (10.10 - 187) <F1805A0F-D5CC-35A8-9349-042D58D128B0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff8842a000 -     0x7fff8842eff7  libGIF.dylib (1241) <8A3CB11A-5CB9-3008-A0E1-F8B56125F484> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8843a000 -     0x7fff88445fff  libcommonCrypto.dylib (60061.30.1) <E789748D-F9A7-3CFF-B317-90DF348B1E95> /usr/lib/system/libcommonCrypto.dylib
    0x7fff88446000 -     0x7fff88446fff  com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff88447000 -     0x7fff88749ffb  com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff88af8000 -     0x7fff88b8ffff  com.apple.CoreMedia (1.0 - 1562.240) <CCAF850F-B2E8-3F3B-9DE9-2BB469403EDF> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff88b90000 -     0x7fff88bc9fff  com.apple.AirPlaySupport (2.0 - 215.18) <A7730005-A538-30E8-815B-727957D74C89> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
    0x7fff88e49000 -     0x7fff88e56ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
    0x7fff88e57000 -     0x7fff88e58ff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
    0x7fff88e59000 -     0x7fff88e5bff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
    0x7fff88eb7000 -     0x7fff88ed2ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x7fff88ed3000 -     0x7fff88f54ff7  com.apple.CoreUtils (1.1 - 110.1) <3808CBC5-1DF1-3821-8AAE-57C30D4F514B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff88f55000 -     0x7fff88f66ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x7fff88f8f000 -     0x7fff88f9bff7  libGPUSupportMercury.dylib (11.1.6) <C591F35C-AA0E-3145-8783-54276201C4B8> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff88f9c000 -     0x7fff893effc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff89475000 -     0x7fff89487ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
    0x7fff8948b000 -     0x7fff894b0ff7  libJPEG.dylib (1241) <A6635296-BCC9-35E5-A5AF-351B039B5087> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff89590000 -     0x7fff8960efff  com.apple.CoreServices.OSServices (640.4 - 640.4) <BE8DF749-84BA-3029-AE1D-32F3993A78A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8960f000 -     0x7fff8974cfff  com.apple.ImageIO.framework (3.3.0 - 1241) <BCBBC66A-5028-3BA5-8087-C9E7BBC3A65B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff897a6000 -     0x7fff897a8fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
    0x7fff897a9000 -     0x7fff897acffb  libCGXType.A.dylib (788.3.2) <EA4E8436-FFE4-3D05-B7D7-7417987E4574> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff89907000 -     0x7fff89bcaff7  com.apple.WebKit (10600 - 10600.8.9) <8EE5A9F9-DE98-3202-92C0-23F6E6E5E274> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff89bf8000 -     0x7fff89bf8ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
    0x7fff89bf9000 -     0x7fff89c02ff3  com.apple.CommonAuth (4.0 - 2.0) <9A484EE6-0003-3AB1-AE4F-AA543BBBF53F> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff89c03000 -     0x7fff89c33fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff89c34000 -     0x7fff89c4eff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8a4dc000 -     0x7fff8a514fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff8a56b000 -     0x7fff8adceff7  com.apple.CoreGraphics (1.600.0 - 788.3.2) <025FF107-A972-38AE-B313-6F9129B50C75> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8adcf000 -     0x7fff8adcffff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8add1000 -     0x7fff8addcff7  libkxld.dylib (2782.50.1) <F346A631-20E3-3BA3-891F-FA95189CD7A9> /usr/lib/system/libkxld.dylib
    0x7fff8addd000 -     0x7fff8addeff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8addf000 -     0x7fff8ade3fff  com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8ae22000 -     0x7fff8aeb0fff  com.apple.CorePDF (4.0 - 4) <19F4CB03-189E-3271-8F7A-A7D0DB3ACE49> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8aeb1000 -     0x7fff8aecefff  libsystem_kernel.dylib (2782.50.1) <1EE815DA-FF1B-3A53-AE9B-C98BD8177A9D> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8aecf000 -     0x7fff8aef5fff  com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff8afa3000 -     0x7fff8b01bff7  com.apple.SystemConfiguration (1.14.4 - 1.14) <3DFFD7F7-BD23-3F4C-A209-C4A0D99F6573> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff8b01c000 -     0x7fff8b10fff7  libJP2.dylib (1241) <E3D08E10-9E4E-3C19-B107-233A567B20D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8b119000 -     0x7fff8b1c0fff  com.apple.PDFKit (3.1 - 3.1) <D410CE57-6227-31D8-9F39-92583E552EA8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff8b1c1000 -     0x7fff8b6eaff7  com.apple.QuartzComposer (5.1 - 332.1) <64399385-0768-3590-B4EF-1BD0F8A35CB3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff8b6eb000 -     0x7fff8b71bff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff8b75e000 -     0x7fff8b790ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff8b791000 -     0x7fff8b920fff  libGLProgrammability.dylib (11.1.6) <5A56E484-5A99-3BD7-99C0-B43D74F2C91C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff8b921000 -     0x7fff8b93dff7  libsystem_malloc.dylib (53.30.1) <DDA8928B-CC0D-3255-BD8A-3FEA0982B890> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8b93e000 -     0x7fff8b943ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
    0x7fff8b944000 -     0x7fff8b948fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
    0x7fff8b949000 -     0x7fff8b95effb  libCGInterfaces.dylib (294.1) <1A6AADE6-09EC-3054-85F9-E6A3607EBA70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff8b95f000 -     0x7fff8b987fff  libRIP.A.dylib (788.3.2) <F0E03341-C608-3A49-AFE1-1E5736C5C989> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8b988000 -     0x7fff8b9b0fff  libxpc.dylib (559.40.1) <5C829202-962E-3744-8B50-00D38CC88E84> /usr/lib/system/libxpc.dylib
    0x7fff8b9b1000 -     0x7fff8b9cbff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8b9cc000 -     0x7fff8b9e6ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x7fff8b9e7000 -     0x7fff8b9e7ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
    0x7fff8b9e8000 -     0x7fff8b9f4ff7  com.apple.OpenDirectory (10.10 - 187) <22FF4721-03D8-381B-AA83-2B07D690C777> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8b9f5000 -     0x7fff8b9fdff3  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
    0x7fff8b9fe000 -     0x7fff8bb5ffff  com.apple.avfoundation (2.0 - 889.210) <E1F0F203-6EA6-3CFA-BC6C-F372F273D6C5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff8bbc0000 -     0x7fff8bcd7fe7  libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff8bcd8000 -     0x7fff8bcf1ff3  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
    0x7fff8bcf2000 -     0x7fff8bd03ff3  libsystem_coretls.dylib (35.40.1) <155DA0A9-2046-332E-BFA3-D7974A51F731> /usr/lib/system/libsystem_coretls.dylib
    0x7fff8bd0a000 -     0x7fff8bd34ff7  libdispatch.dylib (442.50.1) <A61E703C-784A-3698-B513-75DD12AAD6DC> /usr/lib/system/libdispatch.dylib
    0x7fff8bd35000 -     0x7fff8bd55ff7  com.apple.MultitouchSupport.framework (264.6 - 264.6) <1539F1F6-6334-37F3-9C52-02EFFBF4835D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff8bd56000 -     0x7fff8bd5dff7  libCGCMS.A.dylib (788.3.2) <76F72DC8-B7C7-377B-BDB4-DF2DAF757FE9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x7fff8bd5e000 -     0x7fff8be50ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff8be51000 -     0x7fff8bea4ffb  libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x7fff8bea5000 -     0x7fff8c23dff7  com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8c23e000 -     0x7fff8c245ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8c2ac000 -     0x7fff8c340fff  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
    0x7fff8c35e000 -     0x7fff8c35ffff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8c360000 -     0x7fff8c36dfff  libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
    0x7fff8c36e000 -     0x7fff8c39afff  com.apple.framework.SystemAdministration (1.0 - 1.0) <9F77597C-BAB8-3D86-B6CC-96D54D89E6AE> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff8c39b000 -     0x7fff8c3adff7  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
    0x7fff8c3ae000 -     0x7fff8c3fcff7  com.apple.ImageCaptureCore (6.3 - 6.3) <75B5043C-9EF0-3CD2-875D-12813F0A73D3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff8c3fd000 -     0x7fff8c3fefff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff8c3ff000 -     0x7fff8c404fff  libsystem_stats.dylib (163.30.2) <D0E96837-3CF6-323D-B711-6DF6F660E530> /usr/lib/system/libsystem_stats.dylib
    0x7fff8c405000 -     0x7fff8c405fff  com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8c416000 -     0x7fff8c451fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8c452000 -     0x7fff8c4f0fff  com.apple.Metadata (10.7.0 - 917.36) <00C4CB5D-E723-3612-84E0-439098392CDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff8c4f1000 -     0x7fff8c4f7fff  libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
    0x7fff8c4f8000 -     0x7fff8c686fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff8c687000 -     0x7fff8c6d3fff  com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8c6d6000 -     0x7fff8c6d6fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8c6e7000 -     0x7fff8c6f0ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
    0x7fff8c700000 -     0x7fff8c784fff  com.apple.PerformanceAnalysis (1.0 - 1) <4E934EE0-5CC6-3D54-8FA2-5B8AE669D775> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff8c7e2000 -     0x7fff8c7ffffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
    0x7fff8c802000 -     0x7fff8c9e7ff7  libicucore.A.dylib (531.50) <CAA7ACE0-4012-3A13-864D-2B56B4B072FD> /usr/lib/libicucore.A.dylib
    0x7fff8c9e8000 -     0x7fff8ca23fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff8ca24000 -     0x7fff8cdfbfe7  com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8ce6f000 -     0x7fff8cf2aff7  com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff8cf7b000 -     0x7fff8cfb2ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <CAFB9695-000F-34EA-8DF5-09996929C26A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8cfb3000 -     0x7fff8d1ad46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
    0x7fff8d1ae000 -     0x7fff8e171ff3  com.apple.WebCore (10600 - 10600.8.9) <A5400B08-6067-370E-B224-14890DA39857> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff8e179000 -     0x7fff8e1c8ff7  libcurl.4.dylib (83.40.2) <AE97ED1E-A58F-3EF0-8E88-DDC6AD409BCE> /usr/lib/libcurl.4.dylib
    0x7fff8e1c9000 -     0x7fff8e1d4ff7  com.apple.CrashReporterSupport (10.10 - 631) <C44259AC-0A1C-3EC5-99AC-48CB520A709D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff8e1d5000 -     0x7fff8e454ff7  com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8e45a000 -     0x7fff8e51aff7  com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8e51b000 -     0x7fff8e5bdfff  com.apple.Bluetooth (4.3.6 - 4.3.6f3) <E5DC1699-2727-329C-A843-C80CE9A6CD7B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff8e643000 -     0x7fff8e643fff  com.apple.quartzframework (1.5 - 1.5) <26C982A3-2FC3-3F50-B5F4-3C545C3BAC10> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8e644000 -     0x7fff8e738ff7  libFontParser.dylib (134.10) <6CF434A2-91CA-3477-BDE2-124508EDA05D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8e7b8000 -     0x7fff8e7bbfff  com.apple.IOSurface (97.4 - 97.4) <AE11CFBC-4D46-30F3-BEEC-4C8131079391> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8e7bc000 -     0x7fff8e7bffff  com.apple.xpc.ServiceManagement (1.0 - 1) <A95A15CD-3B21-3513-AFF8-1D7DE3DBFA12> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff8e7c0000 -     0x7fff8e834ffb  com.apple.securityfoundation (6.0 - 55126) <344401F5-4016-3AEB-BFDC-CE8E5546D39F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff8e836000 -     0x7fff8e837ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
    0x7fff8e898000 -     0x7fff8e929ff7  libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib
    0x7fff8e92a000 -     0x7fff8e949fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff8e94a000 -     0x7fff8e94dff7  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <BCC15965-7869-34F4-9019-9D0A41DD6AFF> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff8e94e000 -     0x7fff8e968ff7  libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
    0x7fff8ea7c000 -     0x7fff8ebbffff  libsqlite3.dylib (168.2) <BCB1F77E-2484-3EC4-A1D5-1AE90A407A23> /usr/lib/libsqlite3.dylib
    0x7fff8f5f3000 -     0x7fff8f63eff7  com.apple.CloudDocs (1.0 - 321.10) <A8221290-A2A5-3767-BB26-CC57AC18D4DC> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff8ff9b000 -     0x7fff8fff8fff  com.apple.QuickLookFramework (5.0 - 675.43) <506D60B4-B188-3D0A-9187-0404A60A9B06> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8fff9000 -     0x7fff902c8ff3  com.apple.CoreImage (10.3.4) <C1AE8252-A95D-3BF4-83B8-BE85E979F2CB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff902c9000 -     0x7fff90303ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff9031d000 -     0x7fff9036cff7  com.apple.opencl (2.4.2 - 2.4.2) <EB365E68-9965-3596-A40A-D1E372F3A9B3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff9036d000 -     0x7fff9037efff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x7fff903a4000 -     0x7fff903a9ffb  libheimdal-asn1.dylib (398.40.1) <7D2BE3DE-60F7-3A6E-A92E-DA0EF9D3417E> /usr/lib/libheimdal-asn1.dylib
    0x7fff903aa000 -     0x7fff903acfff  com.apple.SecCodeWrapper (4.0 - 238.20.2) <C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff906d9000 -     0x7fff90752fe7  libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib
    0x7fff90760000 -     0x7fff90884ff7  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
    0x7fff90885000 -     0x7fff9091bff7  com.apple.cloudkit.CloudKit (283.67.4 - 283.67.4) <EA6E4B2C-A3AA-3636-B9C3-F61D3EFFB82B> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff9091c000 -     0x7fff9091ffff  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
    0x7fff90948000 -     0x7fff90969fff  com.apple.framework.Apple80211 (10.3 - 1030.71.6) <C0A17391-5C8B-34B1-BD46-8D644AB57DE0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff9096a000 -     0x7fff90e5afff  com.apple.MediaToolbox (1.0 - 1562.240) <756EDFE0-6D9E-3482-AE40-6D2E6A7042F1> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff90e7c000 -     0x7fff90ec6fff  com.apple.HIServices (1.22 - 523) <E2F3C5FF-8C50-3E4F-BE63-77A700466663> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff90f5f000 -     0x7fff90f76ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff90f77000 -     0x7fff90f79ff7  com.apple.securityhi (9.0 - 55006) <2B9C0BCB-7D82-39C2-A99F-7B9E1522CDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff90f7a000 -     0x7fff90f7afff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff90f7b000 -     0x7fff90f7dfff  libsystem_configuration.dylib (699.40.2) <56F94DCE-DBDE-3615-8F07-DE6270D9F8BE> /usr/lib/system/libsystem_configuration.dylib
    0x7fff90f7e000 -     0x7fff90fabfff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff90fac000 -     0x7fff90fb0fff  libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff90fb1000 -     0x7fff90fb9fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
    0x7fff90fba000 -     0x7fff91019fff  com.apple.AE (681.5 - 681.7) <2BF39455-1CDD-392C-824A-9972C6B1FB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff9102e000 -     0x7fff9143bff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff9143c000 -     0x7fff9152eff3  libxml2.2.dylib (26.2) <E1391BDB-D196-3B20-9B65-FABAF4698C75> /usr/lib/libxml2.2.dylib
    0x7fff9152f000 -     0x7fff91562fff  com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff91563000 -     0x7fff91593ff3  com.apple.GSS (4.0 - 2.0) <97F2A028-44CF-3188-B863-F4EEB39CBDBD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff91594000 -     0x7fff916dcff7  com.apple.WebKitLegacy (10600 - 10600.8.9) <C01FF5CA-AB10-39D9-BD26-7A62332B708F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff916dd000 -     0x7fff916e6fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff916e7000 -     0x7fff918f7ff7  com.apple.CFNetwork (720.5.7 - 720.5.7) <A47D7DD2-5903-39D0-8D27-5A7E2D119D84> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff9197d000 -     0x7fff91985ff7  com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff91986000 -     0x7fff919f2fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff91a25000 -     0x7fff91a48ff7  com.apple.framework.familycontrols (4.1 - 410) <E491AFDB-2E12-37D0-B093-6E93091019C4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff91a49000 -     0x7fff91a6eff7  libPng.dylib (1241) <E4244E6E-60F4-3478-BD18-1DD52E42EFD9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff91afe000 -     0x7fff91b8afff  libsystem_c.dylib (1044.40.2) <69158EFA-8270-30A1-BA02-4F74A4498147> /usr/lib/system/libsystem_c.dylib
    0x7fff91c62000 -     0x7fff91cc9ffb  com.apple.datadetectorscore (6.0 - 396.1.2) <D04A8016-B2AD-33A2-8A8E-5793968A8370> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff91cca000 -     0x7fff91ccafff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff91d31000 -     0x7fff91d32ff3  libSystem.B.dylib (1213) <1866C519-C5F3-3D09-8C17-A8F703664521> /usr/lib/libSystem.B.dylib
    0x7fff91d33000 -     0x7fff91d33ff7  liblaunch.dylib (559.40.1) <4F81CA3A-D2CE-3030-A89D-42F3DAD7BA8F> /usr/lib/system/liblaunch.dylib
    0x7fff91df0000 -     0x7fff91e5cff3  com.apple.MMCS (1.3 - 327.5) <FC998246-ED60-334D-9E94-453F35EF9C78> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
    0x7fff91e5d000 -     0x7fff920c7ff7  com.apple.imageKit (2.6.1 - 850) <612201FE-768E-386B-82E3-764038B40120> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff920c8000 -     0x7fff920cafff  com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff920cb000 -     0x7fff920d3fff  libsystem_dnssd.dylib (576.50.2) <9EC5AF92-D0D2-3BDE-92B6-D3730D3865C8> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff920d4000 -     0x7fff921edffb  com.apple.CoreText (454.11 - 454.11) <7E5228C8-8657-3B6C-B3A4-98B79A3041EA> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff921ee000 -     0x7fff921f4ff7  libsystem_networkextension.dylib (167.40.3) <BA58B30B-8377-3B0A-8AE3-4F84021D9D4E> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff922a2000 -     0x7fff922a5ff7  com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff9234c000 -     0x7fff923bbfff  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
    0x7fff923bc000 -     0x7fff923d8fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff92697000 -     0x7fff92846fff  GLEngine (11.1.6) <8AD12D78-85C6-3B9C-BB0A-153A66236A56> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff92847000 -     0x7fff9284cff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff929af000 -     0x7fff92a85ff3  com.apple.DiskImagesFramework (10.10.5 - 398) <37291661-BCB2-3F95-B446-5E5DB1D1E472> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff92a9b000 -     0x7fff92dceff7  libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
    0x7fff92dcf000 -     0x7fff92e1cff7  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
    0x7fff92e89000 -     0x7fff92e8bff3  com.apple.SafariServices.framework (10601 - 10601.3.9) <B15583E0-9E77-3BDD-92F2-486E57C3DCBB> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff92e8f000 -     0x7fff92e93fff  com.apple.IOAccelerator (156.16 - 156.16) <12DE1474-4B2A-3D7D-ACF9-DDAF66A6936A> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff92e94000 -     0x7fff92e9bfff  com.apple.NetFS (6.0 - 4.0) <C263C8F8-F284-3101-AC82-A97A81716063> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff92ee1000 -     0x7fff92ee9ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff92ef0000 -     0x7fff92f3fff7  libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
    0x7fff92f40000 -     0x7fff92f44fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
    0x7fff92f45000 -     0x7fff92f48ff7  libdyld.dylib (353.2.3) <CFBBE540-D503-3AFC-B5D6-644F1E69949B> /usr/lib/system/libdyld.dylib
    0x7fff92f49000 -     0x7fff932b4fff  com.apple.VideoToolbox (1.0 - 1562.240) <BEBDEB83-618F-38BE-B7A7-5E096B428DFA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff932b5000 -     0x7fff932b6fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    0x7fff932b7000 -     0x7fff932dbff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff932dc000 -     0x7fff932f1ff7  com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff9340e000 -     0x7fff93410fff  libRadiance.dylib (1241) <480E8A72-F5F9-31A4-BF63-28BAF3BB1F8E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff93411000 -     0x7fff9341afff  libsystem_pthread.dylib (105.40.1) <ACE90967-ECD0-3251-AEEB-461E3C6414F7> /usr/lib/system/libsystem_pthread.dylib
    0x7fff9341b000 -     0x7fff93424fff  libGFXShared.dylib (11.1.6) <CB24B5DA-CB17-3A0B-94E1-5A58DADC3FBD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff93444000 -     0x7fff93495fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <8E6AE326-9F3E-3182-BD9E-FDF561211E2E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff934a0000 -     0x7fff934acfff  com.apple.speech.synthesis.framework (5.3.11 - 5.3.11) <DFC7FD85-F1B0-317C-8513-722570CB8FB9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff934ef000 -     0x7fff9351affb  libarchive.2.dylib (30.50.1) <C140763F-5470-3302-B3E0-651B4B5930ED> /usr/lib/libarchive.2.dylib
    0x7fff9351b000 -     0x7fff93545fff  GLRendererFloat (11.1.6) <EB135987-0B93-393F-9139-CAB7F6FEBB12> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff93546000 -     0x7fff93609ff7  libvMisc.dylib (516) <21497A28-8DCB-3EB8-BDAC-93C93382B0AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff9360a000 -     0x7fff9363bff7  com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff93657000 -     0x7fff9373bfff  libcrypto.0.9.8.dylib (52.40.1) <D123FC57-E2EB-3E08-A51B-6C317EA83EB5> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff9373c000 -     0x7fff93b6cfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff93b6d000 -     0x7fff93b88fff  com.apple.AppleVPAFramework (1.4.5 - 1.4.5) <A6421B0B-6D4D-3E64-AC61-DDB04ED7CFF0> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff93ba9000 -     0x7fff93c48e27  com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff942b9000 -     0x7fff942bbff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff94556000 -     0x7fff946bdffb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff946be000 -     0x7fff946cdfff  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
    0x7fff946ce000 -     0x7fff94812ff7  com.apple.QTKit (7.7.3 - 2890.9) <993AF630-272B-3AE6-97A5-946C4283485A> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff94813000 -     0x7fff9487aff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff9487b000 -     0x7fff9487dfff  libCVMSPluginSupport.dylib (11.1.6) <F82BF8C4-12D3-3EAD-AEDE-533AC08AEB4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff94ae7000 -     0x7fff94aeffff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x7fff94af0000 -     0x7fff94b06ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <C3E7D4C1-400D-34FA-9FE1-8C68C03CE969> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff94b07000 -     0x7fff94e0cff3  com.apple.HIToolbox (2.1.1 - 758.7) <E3129A67-BDF9-333D-9C9C-A95C8F0EF71C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff94e0d000 -     0x7fff94e12fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff94e13000 -     0x7fff94e18ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff94e19000 -     0x7fff94e41fff  libsystem_info.dylib (459.40.1) <2E16C4B3-A327-3957-9C41-143911979A1E> /usr/lib/system/libsystem_info.dylib
    0x7fff94e42000 -     0x7fff94e46fff  com.apple.LoginUICore (3.2 - 3.2) <417954C5-1675-31A8-9631-6B56E9AA3E93> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff94e47000 -     0x7fff94e52ff7  com.apple.DirectoryService.Framework (10.10 - 187) <F5B30ACE-57D9-31EA-82F9-98F175B277D1> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff94e53000 -     0x7fff94e60ff3  com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff94ef5000 -     0x7fff94f8aff7  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
    0x7fff9506d000 -     0x7fff950aefff  libGLU.dylib (11.1.6) <4BC6579D-A6D0-3A19-880E-E29FAEA698E7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff950af000 -     0x7fff950c2ff7  com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff95131000 -     0x7fff95135fff  libspindump.dylib (182.4) <929670EB-4963-3496-AD24-8B50E388803C> /usr/lib/libspindump.dylib
    0x7fff95136000 -     0x7fff9515aff7  com.apple.Sharing (328.17 - 328.17) <AD5E243A-B79F-3D7B-800B-A2C99A1CFEF1> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff9515b000 -     0x7fff95166fff  com.apple.AppSandbox (4.0 - 238.20.2) <BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff95167000 -     0x7fff951d9fff  com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff951f7000 -     0x7fff951fdff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff95209000 -     0x7fff95241fff  libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib
    0x7fff95255000 -     0x7fff9527effb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
    0x7fff9527f000 -     0x7fff95291ff7  libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib
    0x7fff95292000 -     0x7fff9531bff7  com.apple.CoreSymbolication (3.1 - 57020.2) <FDAF88F6-7D11-37BC-B758-4B835FA657BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff9531c000 -     0x7fff95369ff3  com.apple.CoreMediaIO (601.0 - 4760) <F3388B24-3498-3E91-8878-7CC87330AEC2> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff95375000 -     0x7fff954a5fff  com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff954a6000 -     0x7fff954b1fff  libGL.dylib (11.1.6) <38B3FF9A-5660-3080-9DB8-1CAE0E8CD739> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff954b2000 -     0x7fff95520ff3  com.apple.Heimdal (4.0 - 2.0) <8D1667CF-D454-3E07-A58E-E15591B5A95E> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff95521000 -     0x7fff95592ffb  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
    0x7fff95593000 -     0x7fff955abff7  libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib
    0x7fff955ac000 -     0x7fff955b6ff7  com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff955b7000 -     0x7fff955c2fff  com.apple.CommerceCore (1.0 - 376.29) <1058502F-8C78-36E1-914A-6403A2231FBA> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff955c3000 -     0x7fff955c3fff  libOpenScriptingUtil.dylib (162.2) <D6A2216D-ADB2-3F24-AD30-F6D00829F545> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff955c4000 -     0x7fff955c8fff  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
    0x7fff955c9000 -     0x7fff955f4fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff955f5000 -     0x7fff955f7fff  com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff955f8000 -     0x7fff95644ff7  libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib
    0x7fff95645000 -     0x7fff95646ff7  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
    0x7fff95647000 -     0x7fff95649fff  libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
    0x7fff9564a000 -     0x7fff95675ff7  com.apple.DictionaryServices (1.2 - 229.1) <62EC3E1B-5A28-3252-90FF-C2E9999C2A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff95992000 -     0x7fff959ecff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff95a23000 -     0x7fff95a77fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff95a78000 -     0x7fff95a85ff7  com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff95a86000 -     0x7fff95a8cfff  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
    0x7fff95a8d000 -     0x7fff95ad3ff7  libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff95af9000 -     0x7fff95b01fe7  libcldcpuengine.dylib (2.4.5) <6CC680F9-0D13-333B-B151-F0D9C631A1E5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff95b25000 -     0x7fff95b65ff7  libGLImage.dylib (11.1.6) <D6DDC014-2C74-34B3-970A-26F211FF76EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

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

VM Region Summary:
ReadOnly portion of Libraries: Total=314.3M resident=153.5M(49%) swapped_out_or_unallocated=160.8M(51%)
Writable regions: Total=775.3M written=572.0M(74%) resident=651.3M(84%) swapped_out=4K(0%) unallocated=124.0M(16%)
 
REGION TYPE                      VIRTUAL
===========                      =======
Activity Tracing                   2048K
CG backing stores                  1012K
CG image                            276K
CG shared images                    336K
CoreImage                             8K
CoreUI image data                    84K
Dispatch continuations             8192K
IOKit                              68.5M
Kernel Alloc Once                     8K
MALLOC                            653.7M
MALLOC (admin)                       32K
MALLOC_LARGE (reserved)            4560K        reserved VM address space (unallocated)
Memory Tag 242                       12K
OpenCL                               16K
OpenGL GLSL                         256K
STACK GUARD                        56.0M
Stack                              13.1M
VM_ALLOCATE                        19.4M
VM_ALLOCATE (reserved)               36K        reserved VM address space (unallocated)
__DATA                             30.3M
__GLSLBUILTINS                     2588K
__IMAGE                             528K
__LINKEDIT                         77.9M
__TEXT                            236.4M
__UNICODE                           552K
mapped file                        73.0M
shared memory                        68K
===========                      =======
TOTAL                               1.2G
TOTAL, minus reserved VM space      1.2G
 

Model: iMac12,1, BootROM IM121.0047.B23, 4 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 1.71f21
Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.74.0-P2P
Bluetooth: Version 4.3.6f3 16238, 3 services, 19 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Serial ATA Device: WDC WD5000AAKS-402AA0, 500.11 GB
Serial ATA Device: HL-DT-STDVDRW  GA32N
USB Device: FaceTime HD Camera (Built-in)
USB Device: Hub
USB Device: BRCM2046 Hub
USB Device: Bluetooth USB Host Controller
USB Device: Hub
USB Device: Cruzer Edge
USB Device: Keyboard Hub
USB Device: Apple Optical USB Mouse
USB Device: Apple Keyboard
USB Device: IR Receiver
USB Device: Internal Memory Card Reader
Thunderbolt Bus: iMac, Apple Inc., d.0
Screen Shot 2016-02-03 at 13.25.58.png

Michael MacAskill

unread,
Feb 3, 2016, 9:53:51 PM2/3/16
to psychop...@googlegroups.com
Hi Anneke,

This is a bit beyond me. I can help (sometimes at least) with Python-level errors. But this crash is coming from the operating system level and it is hard to see what typical Python programming-type things could do that.

It does point to something specific about the configuration on that computer (is it sill only occurring there?) For example, maybe the PsychoPy installation has been corrupted in some way. Have you tried deleting it and reinstalling a freshly-downloaded copy?

Regards,

Michael


> On 4/02/2016, at 02:35, Anneke Haddad <anneke...@gmail.com> wrote:
>
> So, I rewrote the task in Builder, which I hoped would solve any issues that were related to my code. The new Builder task seemed to be running fine, but my student has just reported that she has once again failed to get a csv file for her most recent participant.
>
> She says that when the participant got to the end of the task, she got the spinning beachball and then a pop-up window saying 'Psychopy quit unexpectedly'. I have attached a screenshot of this error message and the full text of the message is below.
>
> Interestingly, this time she says she didn't get the message 'Fatal Python error: (pygame parachute) Segmentation Fault" which I had thought was consistently related to the non-saving of the csv file - perhaps I was wrong about that!
>
> Michael, you asked if I started some process or created some object that remain in existence, and won't be cleared by the standard PsychoPy quit procedure - I don't know what sort of process/object this would be - perhaps it is relevant that the task uses sound files and a movie file? But surely those would be cleared by the standard quit procedure that is called by Builder at the end of the experiment?

Reply all
Reply to author
Forward
0 new messages