-
Notifications
You must be signed in to change notification settings - Fork 0
/
flankerA-010-1-1.txt
6659 lines (6659 loc) · 287 KB
/
flankerA-010-1-1.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*** Header Start ***
VersionPersist: 1
LevelName: Session
LevelName: Block
LevelName: Trial
LevelName: SubTrial
LevelName: LogLevel5
LevelName: LogLevel6
LevelName: LogLevel7
LevelName: LogLevel8
LevelName: LogLevel9
LevelName: LogLevel10
Experiment: flankerA
SessionDate: 08-14-2018
SessionTime: 10:43:20
SessionStartDateTimeUtc: 8/14/2018 3:43:20 PM
Subject: 010
Session: 1
PrePost: 1
DataFile.Basename: flankerA-010-1
RandomSeed: -2042631544
Group: 1
Display.RefreshRate: 60.002
Clock.Information: <?xml version="1.0"?>\n<Clock xmlns:dt="urn:schemas-microsoft-com:datatypes"><Description dt:dt="string">E-Prime Primary Realtime Clock</Description><StartTime><Timestamp dt:dt="int">0</Timestamp><DateUtc dt:dt="string">2018-08-14T15:43:20Z</DateUtc></StartTime><FrequencyChanges><FrequencyChange><Frequency dt:dt="r8">3215419</Frequency><Timestamp dt:dt="r8">9253611683333</Timestamp><Current dt:dt="r8">0</Current><DateUtc dt:dt="string">2018-08-14T15:43:20Z</DateUtc></FrequencyChange></FrequencyChanges></Clock>\n
StudioVersion: 2.0.10.248
RuntimeVersion: 2.0.10.353
RuntimeVersionExpected: 2.0.10.353
RuntimeCapabilities: Professional
ExperimentVersion: 1.0.0.120
*** Header End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 1
stimuli: images/neuL.bmp
postITI: 2000
condition: neu
CR: z
SRCR: 7
StimulusCode: 21
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 1
preITI.OnsetDelay: 9
preITI.OnsetTime: 68981
preITI.DurationError: -9
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 9
stimulus.OnsetTime: 69981
stimulus.DurationError: -9
stimulus.Duration: 200
stimulus.RTTime: 70884
stimulus.ACC: 1
stimulus.RT: 903
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 9
postITI.OnsetTime: 70181
postITI.DurationError: -9
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 903
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 2
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 36
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 2
preITI.OnsetDelay: 9
preITI.OnsetTime: 72181
preITI.DurationError: -9
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 9
stimulus.OnsetTime: 73181
stimulus.DurationError: -9
stimulus.Duration: 200
stimulus.RTTime: 73988
stimulus.ACC: 0
stimulus.RT: 807
stimulus.RESP: z
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 9
postITI.OnsetTime: 73381
postITI.DurationError: -9
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 807
CorrectACC: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 3
stimuli: images/conR.bmp
postITI: 2000
condition: con
CR: m
SRCR: 2
StimulusCode: 18
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 3
preITI.OnsetDelay: 9
preITI.OnsetTime: 75381
preITI.DurationError: -9
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 9
stimulus.OnsetTime: 76381
stimulus.DurationError: -9
stimulus.Duration: 200
stimulus.RTTime: 76940
stimulus.ACC: 1
stimulus.RT: 559
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 9
postITI.OnsetTime: 76581
postITI.DurationError: -9
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 559
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 4
stimuli: images/incL.bmp
postITI: 2000
condition: inc
CR: z
SRCR: 7
StimulusCode: 33
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 4
preITI.OnsetDelay: 9
preITI.OnsetTime: 78581
preITI.DurationError: -9
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 9
stimulus.OnsetTime: 79581
stimulus.DurationError: -9
stimulus.Duration: 200
stimulus.RTTime: 80332
stimulus.ACC: 1
stimulus.RT: 751
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 9
postITI.OnsetTime: 79781
postITI.DurationError: -9
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 751
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 5
stimuli: images/incL.bmp
postITI: 2000
condition: inc
CR: z
SRCR: 7
StimulusCode: 37
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 5
preITI.OnsetDelay: 9
preITI.OnsetTime: 81781
preITI.DurationError: -9
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 9
stimulus.OnsetTime: 82781
stimulus.DurationError: -9
stimulus.Duration: 200
stimulus.RTTime: 83420
stimulus.ACC: 1
stimulus.RT: 639
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 9
postITI.OnsetTime: 82981
postITI.DurationError: -9
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 639
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: nullproc
TrialList: 6
stimuli: images/fix.bmp
postITI: 8000
condition: null
CR:
SRCR:
StimulusCode:
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 6
preITI.OnsetDelay: 8
preITI.OnsetTime: 84980
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 8
postITI.OnsetTime: 86180
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 7
stimuli: images/neuL.bmp
postITI: 2000
condition: neu
CR: z
SRCR: 7
StimulusCode: 27
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 7
preITI.OnsetDelay: 8
preITI.OnsetTime: 94180
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 95180
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 95731
stimulus.ACC: 1
stimulus.RT: 551
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 95380
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 551
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 8
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 8
preITI.OnsetDelay: 8
preITI.OnsetTime: 97380
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 98380
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 98963
stimulus.ACC: 1
stimulus.RT: 583
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 98580
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 583
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 9
stimuli: images/conR.bmp
postITI: 2000
condition: con
CR: m
SRCR: 2
StimulusCode: 14
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 9
preITI.OnsetDelay: 8
preITI.OnsetTime: 100580
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 101580
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 102155
stimulus.ACC: 1
stimulus.RT: 575
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 101780
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 575
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 10
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 24
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 10
preITI.OnsetDelay: 8
preITI.OnsetTime: 103780
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 104780
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 105611
stimulus.ACC: 1
stimulus.RT: 831
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 104980
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 831
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 11
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 11
preITI.OnsetDelay: 8
preITI.OnsetTime: 106980
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 107980
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 108451
stimulus.ACC: 1
stimulus.RT: 471
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 108180
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 471
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 12
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 34
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 12
preITI.OnsetDelay: 8
preITI.OnsetTime: 110180
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 111180
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 111819
stimulus.ACC: 1
stimulus.RT: 639
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 111380
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 639
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 13
stimuli: images/neuL.bmp
postITI: 2000
condition: neu
CR: z
SRCR: 7
StimulusCode: 27
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 13
preITI.OnsetDelay: 8
preITI.OnsetTime: 113380
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 114380
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 114899
stimulus.ACC: 1
stimulus.RT: 519
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 114580
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 519
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: nullproc
TrialList: 14
stimuli: images/fix.bmp
postITI: 2000
condition: null
CR:
SRCR:
StimulusCode:
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 14
preITI.OnsetDelay: 8
preITI.OnsetTime: 116580
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 8
postITI.OnsetTime: 117780
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 15
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 15
preITI.OnsetDelay: 8
preITI.OnsetTime: 119780
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 999
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 120779
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 121251
stimulus.ACC: 1
stimulus.RT: 472
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 120979
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 472
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 16
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 24
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 16
preITI.OnsetDelay: 7
preITI.OnsetTime: 122979
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 123979
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 124475
stimulus.ACC: 1
stimulus.RT: 496
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 124179
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 496
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: nullproc
TrialList: 17
stimuli: images/fix.bmp
postITI: 4000
condition: null
CR:
SRCR:
StimulusCode:
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 17
preITI.OnsetDelay: 7
preITI.OnsetTime: 126179
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 7
postITI.OnsetTime: 127379
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 18
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 26
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 18
preITI.OnsetDelay: 7
preITI.OnsetTime: 131379
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 132379
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 132866
stimulus.ACC: 0
stimulus.RT: 487
stimulus.RESP: z
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 132579
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 487
CorrectACC: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 19
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 36
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 19
preITI.OnsetDelay: 7
preITI.OnsetTime: 134579
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 135579
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 136186
stimulus.ACC: 1
stimulus.RT: 607
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 135779
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 607
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 20
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 28
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 20
preITI.OnsetDelay: 7
preITI.OnsetTime: 137779
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 138779
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 139314
stimulus.ACC: 1
stimulus.RT: 535
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 138979
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 535
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 21
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 21
preITI.OnsetDelay: 7
preITI.OnsetTime: 140979
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 141979
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 142578
stimulus.ACC: 1
stimulus.RT: 599
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 142179
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 599
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 22
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 13
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 22
preITI.OnsetDelay: 7
preITI.OnsetTime: 144179
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 145179
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 145666
stimulus.ACC: 1
stimulus.RT: 487
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 145379
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 487
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 23
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 34
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 23
preITI.OnsetDelay: 7
preITI.OnsetTime: 147379
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 148379
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 148946
stimulus.ACC: 1
stimulus.RT: 567
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 148579
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0