diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index 1052c39..0000000 --- a/LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -Copyright (c) 2005-2011, PoldrackLab. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - * Neither the name of the NumPy Developers nor the names of any - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/expfactory/analysis/__init__.py b/expfactory/analysis/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/expfactory/analysis/maths.py b/expfactory/analysis/maths.py deleted file mode 100644 index 9f99951..0000000 --- a/expfactory/analysis/maths.py +++ /dev/null @@ -1,14 +0,0 @@ -''' -analysis/maths.py: part of expfactory package -math functions - -''' -import numpy - -def check_numeric(v): - if isinstance(v,list): - v = numpy.array(v) - if (v.dtype == numpy.float64 or v.dtype == numpy.int64): - return True - else: - return False diff --git a/expfactory/analysis/stats.py b/expfactory/analysis/stats.py deleted file mode 100644 index 4f8344f..0000000 --- a/expfactory/analysis/stats.py +++ /dev/null @@ -1,46 +0,0 @@ -''' -analysis/stats.py: part of expfactory package -stats functions - -''' -from expfactory.analysis.maths import check_numeric -import scipy.stats as stats -import seaborn as sns -import pandas -import numpy -import sys - -def compute_contrast(df, dep_var, ind_var, plot=True): - '''compute_contrast calculates a contrast (either pearson correlation for numeric or ttest for not) between two variables in the data frame - :param dep_var: dependent variable, must be column in data frame - :param ind_var: independent variable, must be column in data frame - :param plot: boolean to return plot object in result (default True) - :return results: dict that includes t statistic or correlation, prob (two tailed p value), and plot - ''' - results = dict() - - if dep_var and ind_var in df.columns: - result = 'undefined' - iv_vec = df[ind_var] - dv_vec = df[dep_var] - if (check_numeric(iv_vec) and check_numeric(dv_vec)): - corr,pval = stats.stats.pearsonr(iv_vec,dv_vec) # most results can be computed with regression. These are stand ins - results["corr"] = corr - results["pval"] = pval - if plot == True: - results["plot"] = sns.jointplot(ind_var,dep_var, data = df) - else: - iv_labels = pandas.unique(iv_vec) - print("Found %s independent variables: %s" %(len(iv_labels),",".join(iv_labels.tolist()))) - if (len(iv_labels) == 2): - vals1 = df[iv_vec == iv_labels[0]][dep_var] - vals2 = df[iv_vec == iv_labels[1]][dep_var] - tstat, pval = stats.ttest_ind(vals1,vals2) - results["tstat"] = tstat.tolist() - results["pval_two_tailed"] = pval - if plot == True: - results["plot"] = sns.boxplot(data = df, x = ind_var, y = dep_var) - else: - missing = [x for x in [dv,iv] if x not in df.columns] - print "%s missing from data frame columns." %(",".join(missing)) - return results diff --git a/expfactory/analysis/utils.py b/expfactory/analysis/utils.py deleted file mode 100644 index f58035c..0000000 --- a/expfactory/analysis/utils.py +++ /dev/null @@ -1,57 +0,0 @@ -''' -analysis/utils.py: part of expfactory package -utils to perform analyses - -''' - -from expfactory.utils import find_directories, remove_unicode_dict -from glob import glob -import pandas -import json -import re -import os - - -def load_result(result): - '''load_result returns a pandas data frame of a result variable, either a json data structure, a downloaded csv file from an individual experiment, or a tsv file exported from the expfactory-docker instance - :param result: one of a csv (from jsPsych), tsv (from expfactory-docker) or json (from Jspsych) - ''' - - if isinstance(result,str): - filey = os.path.abspath(result) - file_name,ext = os.path.splitext(filey) - - if ext.lower() == ".csv": - df = pandas.read_csv(result,sep=",") - elif ext.lower() == ".tsv": - df = pandas.read_csv(result,sep="\t") - elif ext.lower() == ".json": - df = pandas.read_json(result) - else: - print "File extension not recognized, must be .csv (JsPsych single experiment export) or tsv (expfactory-docker) export." - - return df - - -def clean_df(df, drop_columns = None,drop_na=True): - '''clean_df returns a pandas dataset after removing a set of default generic - columns. Optional variable drop_cols allows a different set of columns to be dropped - :df: a pandas dataframe, loaded via load_result - :param drop_columns: a list of columns to drop. If not specified, a default list will be used from utils.get_dropped_columns() - ''' - # Drop unnecessary columns - if drop_columns == None: - drop_columns = get_drop_columns() - df.drop(drop_columns, axis=1, inplace=True, errors='ignore') - drop_trial_ids = ['welcome', 'instruction', 'attention_check','end'] - # Drop unnecessary columns, all null rows - df = df.query('trial_id not in @drop_trial_ids') - if drop_na == True: - df = df.dropna() - return df - - -def get_drop_columns(): - return ['view_history', 'stimulus', 'trial_index', 'internal_node_id', - 'time_elapsed', 'exp_id', 'stim_duration', 'block_duration', - 'feedback_duration','timing_post_trial'] diff --git a/expfactory/templates/phaser.html b/expfactory/templates/phaser.html new file mode 100644 index 0000000..aead787 --- /dev/null +++ b/expfactory/templates/phaser.html @@ -0,0 +1,21 @@ + + + + + Experiment Factory Game + {{css}} + {{js}} + + + + + + diff --git a/expfactory/testing/data/results/jsPsychData.json b/expfactory/testing/data/results/jsPsychData.json deleted file mode 100644 index 7387537..0000000 --- a/expfactory/testing/data/results/jsPsychData.json +++ /dev/null @@ -1 +0,0 @@ -[{"rt":3431,"stimulus":"
","key_press":32,"possible_responses":[32],"stim_duration":3431,"block_duration":3431,"timing_post_trial":100,"exp_id":"test_task","trial_id":"test","trial_type":"poldrack-single-stim","trial_index":0,"time_elapsed":3434,"internal_node_id":"0.0-0.0"},{"rt":474,"stimulus":"
","key_press":32,"possible_responses":[32],"stim_duration":474,"block_duration":474,"timing_post_trial":100,"exp_id":"test_task","trial_id":"test","trial_type":"poldrack-single-stim","trial_index":1,"time_elapsed":4011,"internal_node_id":"0.0-1.0"},{"rt":405,"stimulus":"
","key_press":32,"possible_responses":[32],"stim_duration":405,"block_duration":405,"timing_post_trial":100,"exp_id":"test_task","trial_id":"test","trial_type":"poldrack-single-stim","trial_index":2,"time_elapsed":4518,"internal_node_id":"0.0-2.0"},{"rt":2672,"stimulus":"

If (4 + 12) / 4 is greater than 3 press the \"M\" key. Otherwise press the \"Z\" key.

","correct":true,"correct_response":77,"key_press":77,"possible_responses":[],"stim_duration":2672,"block_duration":2672,"timing_post_trial":200,"trial_type":"attention-check","trial_index":3,"time_elapsed":7293,"internal_node_id":"0.0-3.0-0.0","exp_id":"test_task"},{"rt":1398,"key_press":13,"trial_type":"poldrack-text","trial_index":4,"time_elapsed":8892,"internal_node_id":"0.0-4.0","exp_id":"test_task"}] diff --git a/expfactory/testing/data/results/results_df.tsv b/expfactory/testing/data/results/results_df.tsv deleted file mode 100644 index 1f622ab..0000000 --- a/expfactory/testing/data/results/results_df.tsv +++ /dev/null @@ -1,682 +0,0 @@ - worker_id worker_platform worker_browser battery_name battery_owner battery_owner_email battery_completed experiment_include_bonus experiment_include_catch experiment_exp_id experiment_name experiment_reference experiment_cognitive_atlas_task_id result_SS_delay result_SS_duration result_SS_stimulus result_SS_trial_type result_block_duration result_condition result_correct result_correct_response result_current_trial result_dateTime result_exp_id result_exp_stage result_feedback_duration result_global_shape result_internal_node_id result_key_press result_large_amt result_later_del result_local_shape result_mouse_click result_num_response result_page_num result_possible_responses result_qnum result_response_range result_rt result_score_response result_small_amt result_stim_duration result_stim_id result_stim_question result_stim_response result_stimulus result_switch result_time_elapsed result_times_viewed result_timing_post_trial result_trial result_trial_id result_trial_index result_trial_num result_trial_type result_id result_view_history -7ce0474b-9095-4507-a01b-767445a1c93d_0 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 0 1454524977430 theories_of_willpower 0.0-0.0 13 1855 1858 instructions welcome 0 text 44 -7ce0474b-9095-4507-a01b-767445a1c93d_1 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1 1454525145484 theories_of_willpower 0.0-1.0 -1 167047 169917 instructions instruction 1 poldrack-instructions 44 "[{""page_index"":0,""viewing_time"":167046}]" -7ce0474b-9095-4507-a01b-767445a1c93d_2 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 25701 2 1454525256515 theories_of_willpower practice 0.0-2.0 37 1 1 [37] 1 [1, 6] 100293 6 25701 Strenuous mental activity exhausts your resources, which you need to refuel afterwards (e.g. through taking breaks, doing nothing, watching television, eating snacks). Strongly agree

Practice 1: In the version of the card game you are about to play, you will not turn the cards over one by one. Rather, you will simply choose the total number of cards you would like to turn over (from 0 to 32) and then continue to the next round. If turning over any cards seems too risky to you can click the zero button, in which case your score for this round will automatically be zero.

This is a practice round, and it looks just like the game you will play. Please select the number of cards you would like to turn over, given the number of loss cards and the amount that you can gain or lose if you turn over a gain or loss card, as shown below. Please note: The computer will tell you how well you did after all 27 game rounds are over!
How many cards do you want to take?
Current Round: 0
Game Round: 1
Loss Amount: 750
# of Loss Cards: 1
Gain Amount: 10

280949 1 0 instruction 2 0 poldrack-survey-multi-choice 44 "[{""page_index"":0,""viewing_time"":68672573},{""page_index"":1,""viewing_time"":40399},{""page_index"":0,""viewing_time"":366713},{""page_index"":1,""viewing_time"":1103977},{""page_index"":0,""viewing_time"":942},{""page_index"":1,""viewing_time"":840},{""page_index"":2,""viewing_time"":2517},{""page_index"":1,""viewing_time"":21200},{""page_index"":2,""viewing_time"":741148}]" -7ce0474b-9095-4507-a01b-767445a1c93d_3 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1000 AX 3 1454525256517 theories_of_willpower test 0.0-2.0 13 tol_peg_1 1 1 none 2 [1, 6] 100293 6 1000 After a strenuous mental activity, your energy is depleted and you must rest to get it refuelled again. Strongly agree
4 Digits

280951 1 1000 practice_intro 2 1 poldrack-survey-multi-choice 44 -7ce0474b-9095-4507-a01b-767445a1c93d_4 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1410 global True 49 4 1454525256518 theories_of_willpower practice 1000 circle 0.0-2.0 49 triangle tol_peg_3 1 1 [49, 50, 51, 52] 3 [1, 6] 100293 1 1410 1 When you have been working on a strenuous mental task, you feel energized and you are able to immediately start with another demanding activity. Strongly agree "
" 0 280952 1 500 stim 2 2 poldrack-survey-multi-choice 44 "[{""page_index"":0,""viewing_time"":2773},{""page_index"":1,""viewing_time"":1318}]" -7ce0474b-9095-4507-a01b-767445a1c93d_5 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1083 global False 49 5 1454525256520 theories_of_willpower practice 1000 circle 0.0-2.0 50 X tol_peg_2 1 1 [49, 50, 51, 52] 4 [1, 6] 100293 1 1083 2 Your mental stamina fuels itself. Even after strenuous mental exertion, you can continue doing more of it. Strongly agree "
" 0 280953 1 500 stim 2 3 poldrack-survey-multi-choice 44 -7ce0474b-9095-4507-a01b-767445a1c93d_6 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1883 global True 52 6 1454525256520 theories_of_willpower practice 1000 square 0.0-2.0 52 square 1 1 [49, 50, 51, 52] 5 [1, 6] 100293 6 1883 When you have completed a strenuous mental activity, you cannot start another activity immediately with the same concentration because you have to recover your mental energy again. Strongly agree "
" 0 280954 1 500 stim 2 4 poldrack-survey-multi-choice 44 "[{""page_index"":0,""viewing_time"":63980},{""page_index"":1,""viewing_time"":108556}]" -7ce0474b-9095-4507-a01b-767445a1c93d_7 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 2177 local True 50 7 1454525256521 theories_of_willpower practice 1000 circle 0.0-2.0 50 55 117 X 1 1 [49, 50, 51, 52] 6 [1, 6] 100293 1 54 2177 After a strenuous mental activity, you feel energized for further challenging activities. Strongly agree "
" 1 280955 1 500 stim 2 5 poldrack-survey-multi-choice 44 -7ce0474b-9095-4507-a01b-767445a1c93d_8 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 2172 global True 51 8 1454525256522 theories_of_willpower practice 1000 triangle 0.0-2.0 51 75 61 square tol_peg_1 1 2 [49, 50, 51, 52] 1 [1, 6] 9731 6 55 2172 1 Resisting temptations makes you feel more vulnerable to the next temptations that come along. Strongly agree "
" 1 280956 1 500 stim 2 6 poldrack-survey-multi-choice 44 -60fc067b-e0cc-46c6-9d00-0fa3d4323841_0 60fc067b-e0cc-46c6-9d00-0fa3d4323841 Linux, Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False eating_questionnaire R18: Three factor eating questionnaire http://jn.nutrition.org/content/134/9/2372.long#sec-18 trm_56aac5f6e4702 0 1454453131622 eating_questionnaire 0.0-0.0 13 2846 2849 0 text 27 -60fc067b-e0cc-46c6-9d00-0fa3d4323841_1 60fc067b-e0cc-46c6-9d00-0fa3d4323841 Linux, Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False eating_questionnaire R18: Three factor eating questionnaire http://jn.nutrition.org/content/134/9/2372.long#sec-18 trm_56aac5f6e4702 1 1454453184903 eating_questionnaire 0.0-1.0 52274 56129 1 poldrack-instructions 27 "[{""page_index"":0,""viewing_time"":52273}]" -60fc067b-e0cc-46c6-9d00-0fa3d4323841_2 60fc067b-e0cc-46c6-9d00-0fa3d4323841 Linux, Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True 2 1454453221222 0.0-2.0 92440 2 poldrack-survey-multi-choice 27 -7ce0474b-9095-4507-a01b-767445a1c93d_9 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1292 local True 51 9 1454525256523 theories_of_willpower practice 1000 square 0.0-2.0 51 25 53 triangle tol_peg_3 1 2 [49, 50, 51, 52] 2 [1, 6] 9731 6 19 1292 2 When situations accumulate that challenge you with temptations, it gets more and more difficult to resist the temptations. Strongly agree "
" 1 280957 1 500 stim 2 7 poldrack-survey-multi-choice 44 -7ce0474b-9095-4507-a01b-767445a1c93d_10 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1522 local True 49 10 1454525256524 theories_of_willpower practice 1000 square 0.0-2.0 49 85 7 circle tol_peg_1 1 2 [49, 50, 51, 52] 3 [1, 6] 9731 1 31 1522 If you have just resisted a strong temptation, you feel strengthened and you can withstand any new temptations. Strongly agree "
" 0 280958 1 500 stim 2 8 poldrack-survey-multi-choice 44 "[{""page_index"":0,""viewing_time"":24801}]" -7ce0474b-9095-4507-a01b-767445a1c93d_11 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 2130 global True 51 11 1454525256525 theories_of_willpower practice 1000 triangle 0.0-2.0 51 25 19 X tol_peg_2 1 2 [49, 50, 51, 52] 4 [1, 6] 9731 6 14 2130 It is particularly difficult to resist a temptation after resisting another temptation right before. Strongly agree "
" 1 280959 1 500 stim 2 9 poldrack-survey-multi-choice 44 -7ce0474b-9095-4507-a01b-767445a1c93d_12 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1969 local False 49 12 1454525256526 theories_of_willpower practice 1000 square 0.0-2.0 52 50 160 circle 1 2 [49, 50, 51, 52] 5 [1, 6] 9731 1 47 1969 Resisting temptations activates your willpower and you become even better able to face new upcoming temptations. Strongly agree "
" 1 280960 1 500 stim 2 10 poldrack-survey-multi-choice 44 -7ce0474b-9095-4507-a01b-767445a1c93d_13 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 2534 global False 51 13 1454525256527 theories_of_willpower practice 1000 triangle 0.0-2.0 52 35 13 square 1 2 [49, 50, 51, 52] 6 [1, 6] 9731 1 15 2534 Your capacity to resist temptations is not limited. Even after you have resisted a strong temptation you can control yourself right afterwards. Strongly agree "
" 1 280961 1 500 stim 2 11 poldrack-survey-multi-choice 44 -7ce0474b-9095-4507-a01b-767445a1c93d_14 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 1408 local True 50 14 1454525256531 theories_of_willpower practice 1000 square 0.0-2.0 50 60 14 X tol_peg_2 1 1 [49, 50, 51, 52] 13 [1, 2] 110039 1 25 1408 Do you think an evening out is more successful if it is unplanned or arranged at the last moment? No "
" 1 280963 1 500 stim 2 12 poldrack-survey-multi-choice 44 "[{""page_index"":0,""viewing_time"":100293},{""page_index"":1,""viewing_time"":9731}]" -7ce0474b-9095-4507-a01b-767445a1c93d_15 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False theories_of_willpower Theories of Willpower Scale http://pss.sagepub.com/content/early/2010/09/28/0956797610384745.full#sec-22 trm_56a91a3082c31 2665 local True 50 15 1454525259103 theories_of_willpower practice 1000 triangle 0.0-3.0 13 80 192 X tol_peg_3 1 1 [49, 50, 51, 52] 14 [1, 2] 1565 1 78 2665 Do you usually work quickly, without bothering to check? No "
" 0 283536 1 500 stim 3 13 text 44 "[{""page_index"":0,""viewing_time"":29605}]" -7ce0474b-9095-4507-a01b-767445a1c93d_16 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 3236 local True 51 16 1454524843128 local_global practice 1000 X 0.0-3.0-12.0 51 55 62 triangle tol_peg_1 1 1 [49, 50, 51, 52] 15 [1, 2] 3236 1 40 3236 Do you often change your interests? No "
" 0 71118852 1 500 stim 16 14 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_17 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2105 local True 52 17 1454524846743 local_global practice 1000 square 0.0-3.0-13.0 52 30 7 square tol_peg_2 2 2 [49, 50, 51, 52] 1 [1, 2] 2105 2 11 2105 Would you enjoy water skiing? Yes "
" 0 71122468 1 500 stim 17 15 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_18 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2577 global False 52 18 1454524850831 local_global practice 1000 square 0.0-3.0-14.0 49 75 119 circle 2 2 [49, 50, 51, 52] 2 [1, 2] 2577 1 67 2577 Usually do you prefer to stick to brands you know are reliable to trying new ones on the chance of finding something better? Yes "
" 1 71126555 1 500 stim 18 16 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_19 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 1154 local True 49 19 1454524853493 local_global practice 1000 triangle 0.0-3.0-15.0 49 35 186 circle 2 2 [49, 50, 51, 52] 3 [1, 2] 1154 2 34 1154 Do you quite enjoy taking risks? Yes "
" 1 71129218 1 500 stim 19 17 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_20 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2000 local True 52 20 1454524855610 local_global practice 1000 circle 0.0-3.0-16.0 -1 50 21 square tol_peg_1 2 2 [37, 40] 4 [1, 2] -1 2 27 2000 Would you enjoy parachute jumping? Yes
+
0 71131335 1 0 stim 20 18 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_21 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 3620 local False 52 21 1454524858623 local_global practice 1000 X 0.0-3.0-17.0 50 85 91 square tol_peg_3 2 2 [49, 50, 51, 52] 5 [1, 2] 3620 1 69 3620 Do you think hitch-hiking is too dangerous a way to travel? Yes "
" 0 71134348 1 500 stim 21 19 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_22 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2125 global True 50 22 1454524862256 local_global practice 1000 X 0.0-3.0-18.0 50 60 89 circle tol_peg_2 2 2 [49, 50, 51, 52] 6 [1, 2] 2125 2 49 2125 Do you like diving off the highboard? Yes "
" 1 71137980 1 500 stim 22 20 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_23 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 896 local False 50 23 1454524864663 local_global practice 1000 triangle 0.0-3.0-19.0 49 85 157 X tol_peg_1 2 2 [49, 50, 51, 52] 7 [1, 2] 896 2 80 896 Do you welcome new and exciting experiences and sensations even if they are a little frightening and unconventional? Yes "
" 1 71140388 1 500 stim 23 21 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_24 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 1269 global False 49 24 1454524867438 local_global practice 1000 circle 0.0-3.0-20.0 50 35 29 X tol_peg_3 2 2 [49, 50, 51, 52] 8 [1, 2] 1269 2 24 1269 Would you like to learn to fly an aeroplane? Yes "
" 1 71143163 1 500 stim 24 22 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_25 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 1430 global True 51 25 1454524870375 local_global practice 1000 triangle 0.0-3.0-21.0 51 80 14 triangle tol_peg_2 2 2 [49, 50, 51, 52] 9 [1, 2] 1430 1 33 1430 Do you find it hard to understand people who risk their necks climbing mountains? Yes "
" 0 71146100 1 500 stim 25 23 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_26 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2418 global True 51 26 1454524874301 local_global practice 1000 triangle 0.0-3.0-22.0 51 30 179 circle 2 2 [49, 50, 51, 52] 10 [1, 2] 2418 2 28 2418 Do you sometimes like doing things that are a bit frightening? Yes "
" 0 71150026 1 500 stim 26 24 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_27 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 5412 local True 52 27 1454524881222 local_global practice 1000 X 0.0-3.0-23.0 52 50 30 square 2 2 [49, 50, 51, 52] 11 [1, 2] 5412 1 34 5412 Generally do you prefer to enter cold sea water gradually, to diving or jumping straight in? Yes "
" 1 71156947 1 500 stim 27 25 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_28 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2597 local True 49 28 1454524885327 local_global practice 1000 X 0.0-3.0-24.0 49 30 80 circle tol_peg_2 2 2 [49, 50, 51, 52] 12 [1, 2] 2597 2 25 2597 Would you enjoy the sensation of skiing very fast down a high mountain slope? Yes "
" 0 71161052 1 500 stim 28 26 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_29 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2617 local True 51 29 1454524889452 local_global practice 1000 X 0.0-3.0-25.0 51 75 20 triangle tol_peg_3 2 2 [49, 50, 51, 52] 13 [1, 2] 2617 2 41 2617 Would you like to go scuba diving? Yes "
" 0 71165176 1 500 stim 29 27 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_30 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2651 global False 52 30 1454524893612 local_global practice 1000 square 0.0-3.0-26.0 49 60 111 circle tol_peg_1 2 2 [49, 50, 51, 52] 14 [1, 2] 2651 2 54 2651 Would you enjoy fast driving? Yes "
" 1 71169336 1 500 stim 30 28 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_31 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 1052 global True 50 31 1454524896175 local_global practice 1000 X 0.0-3.0-27.0 50 80 30 circle tol_peg_2 2 2 [49, 50, 51, 52] 15 [1, 2] 1052 2 54 1052 Would you lke to go pot-holing? Yes "
" 0 71171899 1 500 stim 31 29 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_32 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 730 global True 52 32 1454524898414 local_global practice 1000 square 0.0-3.0-28.0 52 25 136 circle tol_peg_3 2 2 [49, 50, 51, 52] 16 [1, 2] 730 1 22 730 Would you be put off a job involving quite a bit of danger? Yes "
" 0 71174139 1 500 stim 32 30 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_33 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2530 local True 51 33 1454524902454 local_global practice 1000 X 0.0-3.0-29.0 51 55 7 triangle tol_peg_2 [49, 50, 51, 52] 2530 20 2530 "
" 1 71178179 500 stim 33 poldrack-categorize 32 "[{""page_index"":0,""viewing_time"":25236},{""page_index"":1,""viewing_time"":89870}]" -7ce0474b-9095-4507-a01b-767445a1c93d_34 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 4818 local True 49 34 1454524908783 local_global practice 1000 X 0.0-3.0-30.0 49 circle [49, 50, 51, 52] 4818 4818 "
" 0 71184507 500 stim 34 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_35 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 1576 global True 50 35 1454524911870 local_global practice 1000 X 0.0-3.0-31.0 50 X [49, 50, 51, 52] 1576 1576 "
" 1 71187594 500 stim 35 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_36 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2001 local True 52 36 1454524915381 local_global practice 1000 square 0.0-3.0-32.0 52 square tol_peg_1 [49, 50, 51, 52] 2001 2001 "
" 1 71191106 500 stim 36 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_37 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 1938 global True 52 37 1454524918827 local_global practice 1000 square 0.0-3.0-33.0 52 circle tol_peg_2 [49, 50, 51, 52] 1938 1938 "
" 1 71194552 500 stim 37 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_38 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False local_global Local-Global http://www.sciencedirect.com/science/article/pii/S001002859990734X trm_4f241d7adf14e 2000 global 50 38 1454524968659 local_global practice X 0.0-3.0-34.0 -1 triangle tol_peg_1 [37, 40] -1 2000
+
0 71244383 0 stim 38 poldrack-categorize 32 -7ce0474b-9095-4507-a01b-767445a1c93d_39 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 640 AX -1 39 1454609601868 dot_pattern_expectancy test 0.0-38.0 -1 tol_peg_3 [32] 640 640 "
" 224609 0 cue 39 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_40 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 nogo -1 40 1454609602288 dot_pattern_expectancy test 0.0-39.0 -1 tol_peg_2 none -1 500 "
" 225028 0 fixation 40 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_41 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 AX -1 41 1454609602695 dot_pattern_expectancy test 0.0-40.0 -1 tol_peg_1 none -1 1000
Respond Faster!

225435 0 probe 41 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_42 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 813 go 32 42 1454609602761 dot_pattern_expectancy test 0.0-41.0 32 tol_peg_3 [32] 813 813 "
" 225502 0 feedback 42 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_43 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX -1 43 1454609603266 dot_pattern_expectancy test 0.0-42.0 -1 tol_peg_1 none -1 500 "
" 226006 0 cue 43 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_44 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 go 32 44 1454609603521 dot_pattern_expectancy test 0.0-43.0 -1 none -1 2000 "
Your Board
R
G
B
Target Board
R
G
B

You got it!

" 226262 500 fixation 44 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_45 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 AX 32 45 1454609603702 dot_pattern_expectancy test 0.0-44.0 -1 none -1 1000
Respond Faster!

226442 0 probe 45 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_46 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 go 32 46 1454609603792 dot_pattern_expectancy test 0.0-45.0 -1 tol_peg_1 [37, 40] -1 500 "
" 226532 0 feedback 46 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_47 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 47 1454609603871 dot_pattern_expectancy test 0.0-46.0 -1 -1 [37, 40] -1 2000
+
226611 0 cue 47 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_48 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 go 32 48 1454609604217 dot_pattern_expectancy test 0.0-47.0 -1 none -1 2000 "
Your Board
G
B
Target Board
B
R
G

Didn't get that one.

" 226958 500 fixation 48 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_49 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 32 49 1454609604297 dot_pattern_expectancy test 0.0-48.0 -1 none -1 500 "
" 227037 0 probe 49 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_50 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 nogo -1 50 1454609604709 dot_pattern_expectancy test 0.0-49.0 -1 tol_peg_1 none -1 1000
Respond Faster!

227450 0 feedback 50 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_51 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 32 51 1454609605029 dot_pattern_expectancy test 0.0-50.0 -1 tol_peg_2 [37, 40] -1 500 "
" 227769 0 cue 51 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_52 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 nogo -1 52 1454609605215 dot_pattern_expectancy test 0.0-51.0 -1 tol_peg_1 none -1 500 "
" 227956 0 fixation 52 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_53 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 53 1454609605271 dot_pattern_expectancy test 0.0-52.0 -1 tol_peg_3 [37, 40] -1 2000
+
228012 0 probe 53 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_54 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 go 32 54 1454609605300 dot_pattern_expectancy test 0.0-53.0 -1 tol_peg_2 none -1 1000
Respond Faster!

228041 0 feedback 54 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_55 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 55 1454609605720 dot_pattern_expectancy test 0.0-54.0 -1 tol_peg_1 [37, 40] -1 500 "
" 228460 0 cue 55 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_56 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 nogo -1 56 1454609605805 dot_pattern_expectancy test 0.0-55.0 -1 tol_peg_2 none -1 500 "
" 228545 0 fixation 56 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_57 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 57 1454609605875 dot_pattern_expectancy test 0.0-56.0 -1 tol_peg_1 [37, 40] -1 2000
+
228615 0 probe 57 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_58 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 nogo -1 58 1454609606277 dot_pattern_expectancy test 0.0-57.0 -1 none -1 1000
Respond Faster!

229017 0 feedback 58 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_59 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 BX -1 59 1454609606722 dot_pattern_expectancy test 0.0-58.0 -1 [37, 40] -1 500 "
" 229462 0 cue 59 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_60 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 nogo -1 60 1454609606781 dot_pattern_expectancy test 0.0-59.0 -1 tol_peg_1 none -1 500 "
" 229521 0 fixation 60 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_61 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 BX -1 61 1454609606880 dot_pattern_expectancy test 0.0-60.0 -1 tol_peg_2 none -1 1000
Respond Faster!

229620 0 probe 61 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_62 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 go 32 62 1454609607034 dot_pattern_expectancy test 0.0-61.0 -1 tol_peg_1 [37, 40] -1 2000
+
229775 0 feedback 62 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_63 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 63 1454609607310 dot_pattern_expectancy test 0.0-62.0 -1 tol_peg_3 [37, 40] -1 500 "
" 230050 0 cue 63 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_64 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 nogo -1 64 1454609607537 dot_pattern_expectancy test 0.0-63.0 -1 tol_peg_2 none -1 500 "
" 230278 0 fixation 64 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_65 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX -1 65 1454609607724 dot_pattern_expectancy test 0.0-64.0 -1 tol_peg_1 [37, 40] -1 2000
+
230464 0 probe 65 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_66 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 go 32 66 1454609607884 dot_pattern_expectancy test 0.0-65.0 -1 -1 none -1 1000
Respond Faster!

230625 0 feedback 66 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_67 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 BY 32 67 1454609608284 dot_pattern_expectancy test 0.0-66.0 -1 [37, 40] -1 500 "
" 231025 0 cue 67 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_68 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 go 32 68 1454609608389 dot_pattern_expectancy test 0.0-67.0 -1 none -1 500 "
" 231130 0 fixation 68 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_69 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 BY 32 69 1454609608726 dot_pattern_expectancy test 0.0-68.0 -1 -1 [37, 40] -1 2000
+
231466 0 probe 69 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_70 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 go 32 70 1454609608731 dot_pattern_expectancy test 0.0-69.0 -1 none -1 1000
Respond Faster!

231471 0 feedback 70 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_71 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 BX 32 71 1454609609045 dot_pattern_expectancy test 0.0-70.0 -1 [37, 40] -1 500 "
" 231786 0 cue 71 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_72 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 go 32 72 1454609609235 dot_pattern_expectancy test 0.0-71.0 -1 none -1 500 "
" 231976 0 fixation 72 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_73 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 BX 32 73 1454609609317 dot_pattern_expectancy test 0.0-72.0 -1 [37, 40] -1 2000
+
232057 0 probe 73 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_74 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 nogo -1 74 1454609609730 dot_pattern_expectancy test 0.0-73.0 -1 none -1 1000
Respond Faster!

232471 0 feedback 74 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_75 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 75 1454609609895 dot_pattern_expectancy test 0.0-74.0 -1 [37, 40] -1 500 "
" 232635 0 cue 75 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_76 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 go 32 76 1454609610235 dot_pattern_expectancy test 0.0-75.0 -1 none -1 500 "
" 232975 0 fixation 76 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_77 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 77 1454609610288 dot_pattern_expectancy test 0.0-76.0 -1 [37, 40] -1 2000
+
233028 0 probe 77 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_78 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 nogo -1 78 1454609610324 dot_pattern_expectancy test 0.0-77.0 -1 none -1 1000
Respond Faster!

233064 0 feedback 78 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_79 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 32 79 1454609610738 dot_pattern_expectancy test 0.0-78.0 -1 [37, 40] -1 500 "
" 233479 0 cue 79 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_80 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 go 32 80 1454609610828 dot_pattern_expectancy test 0.0-79.0 -1 none -1 500 "
" 233569 0 fixation 80 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_81 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 81 1454609611049 dot_pattern_expectancy test 0.0-80.0 -1 [37, 40] -1 2000
+
233790 0 probe 81 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_82 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 nogo -1 82 1454609611292 dot_pattern_expectancy test 0.0-81.0 -1 none -1 1000
Respond Faster!

234032 0 feedback 82 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_83 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 32 83 1454609611738 dot_pattern_expectancy test 0.0-82.0 -1 [37, 40] -1 500 "
" 234479 0 cue 83 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_84 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 nogo -1 84 1454609611797 dot_pattern_expectancy test 0.0-83.0 -1 none -1 500 "
" 234537 0 fixation 84 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_85 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 85 1454609611902 dot_pattern_expectancy test 0.0-84.0 -1 [37, 40] -1 2000
+
234643 0 probe 85 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_86 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 go 32 86 1454609612054 dot_pattern_expectancy test 0.0-85.0 -1 none -1 1000
Respond Faster!

234794 0 feedback 86 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_87 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 BX 32 87 1454609612337 dot_pattern_expectancy test 0.0-86.0 -1 [37, 40] -1 500 "
" 235077 0 cue 87 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_88 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 go 32 88 1454609612557 dot_pattern_expectancy test 0.0-87.0 -1 none -1 500 "
" 235297 0 fixation 88 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_89 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 BX 32 89 1454609612745 dot_pattern_expectancy test 0.0-88.0 -1 [37, 40] -1 2000
+
235485 0 probe 89 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_90 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 go 32 90 1454609612911 dot_pattern_expectancy test 0.0-89.0 -1 none -1 1000
Respond Faster!

235652 0 feedback 90 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_91 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AY -1 91 1454609613300 dot_pattern_expectancy test 0.0-90.0 -1 [37, 40] -1 500 "
" 236041 0 cue 91 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_92 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 nogo -1 92 1454609613414 dot_pattern_expectancy test 0.0-91.0 -1 none -1 500 "
" 236155 0 fixation 92 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_93 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AY -1 93 1454609613741 dot_pattern_expectancy test 0.0-92.0 -1 [37, 40] -1 2000
+
236482 0 probe 93 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_94 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 go 32 94 1454609613750 dot_pattern_expectancy test 0.0-93.0 -1 none -1 1000
Respond Faster!

236490 0 feedback 94 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_95 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 95 1454609614061 dot_pattern_expectancy test 0.0-94.0 -1 [37, 40] -1 500 "
" 236801 0 cue 95 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_96 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 go 32 96 1454609614257 dot_pattern_expectancy test 0.0-95.0 -1 none -1 500 "
" 236997 0 fixation 96 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_97 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX -1 97 1454609614345 dot_pattern_expectancy test 0.0-96.0 -1 [37, 40] -1 2000
+
237086 0 probe 97 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_98 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 go 32 98 1454609614751 dot_pattern_expectancy test 0.0-97.0 -1 none -1 1000
Respond Faster!

237492 0 feedback 98 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_99 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 32 99 1454609614919 dot_pattern_expectancy test 0.0-98.0 -1 [37, 40] -1 500 "
" 237660 0 cue 99 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_100 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 nogo -1 100 1454609615255 dot_pattern_expectancy test 0.0-99.0 -1 none -1 500 "
" 237996 0 fixation 100 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_101 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 101 1454609615303 dot_pattern_expectancy test 0.0-100.0 -1 [37, 40] -1 2000
+
238044 0 probe 101 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_102 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 go 32 102 1454609615351 dot_pattern_expectancy test 0.0-101.0 -1 none -1 1000
Respond Faster!

238092 0 feedback 102 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_103 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 103 1454609615761 dot_pattern_expectancy test 0.0-102.0 -1 [37, 40] -1 500 "
" 238501 0 cue 103 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_104 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 go 32 104 1454609615856 dot_pattern_expectancy test 0.0-103.0 -1 none -1 500 "
" 238596 0 fixation 104 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_105 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 105 1454609616067 dot_pattern_expectancy test 0.0-104.0 -1 [37, 40] -1 2000
+
238807 0 probe 105 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_106 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 nogo -1 106 1454609616310 dot_pattern_expectancy test 0.0-105.0 -1 none -1 1000
Respond Faster!

239051 0 feedback 106 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_107 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 107 1454609616761 dot_pattern_expectancy test 0.0-106.0 -1 [37, 40] -1 500 "
" 239502 0 cue 107 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_108 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 nogo -1 108 1454609616814 dot_pattern_expectancy test 0.0-107.0 -1 none -1 500 "
" 239554 0 fixation 108 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_109 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 109 1454609616922 dot_pattern_expectancy test 0.0-108.0 -1 [37, 40] -1 2000
+
239663 0 probe 109 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_110 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 nogo -1 110 1454609617073 dot_pattern_expectancy test 0.0-109.0 -1 none -1 1000
Respond Faster!

239813 0 feedback 110 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_111 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 111 1454609617361 dot_pattern_expectancy test 0.0-110.0 -1 [37, 40] -1 500 "
" 240101 0 cue 111 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_112 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 nogo -1 112 1454609617578 dot_pattern_expectancy test 0.0-111.0 -1 none -1 500 "
" 240318 0 fixation 112 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_113 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX -1 113 1454609617764 dot_pattern_expectancy test 0.0-112.0 -1 [37, 40] -1 2000
+
240504 0 probe 113 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_114 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 go 32 114 1454609617930 dot_pattern_expectancy test 0.0-113.0 -1 none -1 1000
Respond Faster!

240671 0 feedback 114 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_115 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX -1 115 1454609618319 dot_pattern_expectancy test 0.0-114.0 -1 [37, 40] -1 500 "
" 241060 0 cue 115 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_116 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 go 32 116 1454609618434 dot_pattern_expectancy test 0.0-115.0 -1 none -1 500 "
" 241175 0 fixation 116 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_117 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 32 117 1454609618768 dot_pattern_expectancy test 0.0-116.0 -1 [37, 40] -1 2000
+
241509 0 probe 117 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_118 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 nogo -1 118 1454609618774 dot_pattern_expectancy test 0.0-117.0 -1 none -1 1000
Respond Faster!

241514 0 feedback 118 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_119 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AY -1 119 1454609619081 dot_pattern_expectancy test 0.0-118.0 -1 [37, 40] -1 500 "
" 241822 0 cue 119 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_120 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 go 32 120 1454609619279 dot_pattern_expectancy test 0.0-119.0 -1 none -1 500 "
" 242020 0 fixation 120 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_121 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 AY -1 121 1454609619369 dot_pattern_expectancy test 0.0-120.0 -1 [37, 40] -1 2000
+
242109 0 probe 121 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_122 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 nogo -1 122 1454609619778 dot_pattern_expectancy test 0.0-121.0 -1 none -1 1000
Respond Faster!

242519 0 feedback 122 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_123 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AX 32 123 1454609619940 dot_pattern_expectancy test 0.0-122.0 -1 [37, 40] -1 500 "
" 242681 0 cue 123 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_124 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 nogo -1 124 1454609620283 dot_pattern_expectancy test 0.0-123.0 -1 none -1 500 "
" 243024 0 fixation 124 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_125 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 AX -1 125 1454609620324 dot_pattern_expectancy test 0.0-124.0 -1 [37, 40] -1 2000
+
243064 0 probe 125 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_126 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 go 32 126 1454609620376 dot_pattern_expectancy test 0.0-125.0 -1 none -1 1000
Respond Faster!

243117 0 feedback 126 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_127 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 BY False 72 127 1454609620787 dot_pattern_expectancy test 0.0-126.0 -1 [37, 40] -1 500 "
" 243528 0 cue 127 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_128 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 128 1454609620881 dot_pattern_expectancy test 0.0-127.0 -1 none -1 500 "
" 243622 0 fixation 128 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_129 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 BY 90 129 1454609621084 dot_pattern_expectancy test 0.0-128.0 -1 [37, 40] -1 2000
+
243825 0 probe 129 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_130 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 130 1454609621333 dot_pattern_expectancy test 0.0-129.0 -1 none -1 1000
Respond Faster!

244074 0 feedback 130 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_131 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 131 1454609621793 dot_pattern_expectancy 0.0-130.0-0.0 -1 [37, 40] -1 500 "
" 244533 0 attention_check 131 attention-check 59 -7ce0474b-9095-4507-a01b-767445a1c93d_132 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 132 1454609621946 dot_pattern_expectancy 0.0-130.0-0.0 -1 [37, 40] -1 2000
+
244686 0 attention_check 131 attention-check 59 -7ce0474b-9095-4507-a01b-767445a1c93d_133 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 133 1454609622090 dot_pattern_expectancy 0.0-131.0 -1 none -1 1000
Respond Faster!

244830 0 rest 132 poldrack-text 59 -7ce0474b-9095-4507-a01b-767445a1c93d_134 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 134 1454609622387 dot_pattern_expectancy test 0.0-132.0 -1 [37, 40] -1 500 "
" 245128 0 cue 133 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_135 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 practice 77 135 1454609622656 dot_pattern_expectancy test 0.0-133.0 -1 none -1 500 "
" 245397 0 fixation 134 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_136 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 136 1454609622796 dot_pattern_expectancy test 0.0-134.0 -1 [37, 40] -1 2000
+
245536 0 probe 135 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_137 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 AY 90 137 1454609623599 dot_pattern_expectancy test 0.0-136.0 -1 none -1 500 "
" 246340 0 cue 137 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_138 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 138 1454609623801 dot_pattern_expectancy test 0.0-137.0 -1 none -1 1000
Respond Faster!

246542 0 fixation 138 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_139 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AY 90 139 1454609624163 dot_pattern_expectancy test 0.0-138.0 -1 [37, 40] -1 500 "
" 246904 0 probe 139 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_140 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 140 1454609624394 dot_pattern_expectancy test 0.0-139.0 -1 [37, 40] -1 2000
+
247134 0 feedback 140 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_141 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 AX 77 141 1454609624898 dot_pattern_expectancy test 0.0-140.0 -1 none -1 500 "
" 247638 0 cue 141 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_142 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 142 1454609625170 dot_pattern_expectancy test 0.0-141.0 -1 none -1 1000
Respond Faster!

247910 0 fixation 142 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_143 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AX 90 143 1454609625305 dot_pattern_expectancy test 0.0-142.0 -1 [37, 40] -1 500 "
" 248045 0 probe 143 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_144 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 144 1454609625606 dot_pattern_expectancy test 0.0-143.0 -1 [37, 40] -1 2000
+
248347 0 feedback 144 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_145 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 AX 90 145 1454609626113 dot_pattern_expectancy test 0.0-144.0 -1 none -1 500 "
" 248853 0 cue 145 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_146 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 146 1454609626315 dot_pattern_expectancy test 0.0-145.0 -1 none -1 1000
Respond Faster!

249055 0 fixation 146 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_147 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AX 77 147 1454609626674 dot_pattern_expectancy test 0.0-146.0 -1 [37, 40] -1 500 "
" 249414 0 probe 147 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_148 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 148 1454609626901 dot_pattern_expectancy test 0.0-147.0 -1 [37, 40] -1 2000
+
249641 0 feedback 148 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_149 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 BX 77 149 1454609627406 dot_pattern_expectancy test 0.0-148.0 -1 none -1 500 "
" 250146 0 cue 149 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_150 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 150 1454609627684 dot_pattern_expectancy test 0.0-149.0 -1 none -1 1000
Respond Faster!

250425 0 fixation 150 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_151 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 BX 90 151 1454609627821 dot_pattern_expectancy test 0.0-150.0 -1 [37, 40] -1 500 "
" 250561 0 probe 151 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_152 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 152 1454609628120 dot_pattern_expectancy test 0.0-151.0 -1 [37, 40] -1 2000
+
250860 0 feedback 152 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_153 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 AY 77 153 1454609628625 dot_pattern_expectancy test 0.0-152.0 -1 none -1 500 "
" 251365 0 cue 153 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_154 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 154 1454609628831 dot_pattern_expectancy test 0.0-153.0 -1 none -1 1000
Respond Faster!

251572 0 fixation 154 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_155 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AY 77 155 1454609629187 dot_pattern_expectancy test 0.0-154.0 -1 [37, 40] -1 500 "
" 251927 0 probe 155 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_156 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 156 1454609629410 dot_pattern_expectancy test 0.0-155.0 -1 [37, 40] -1 2000
+
252151 0 feedback 156 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_157 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 AX 77 157 1454609629919 dot_pattern_expectancy test 0.0-156.0 -1 none -1 500 "
" 252659 0 cue 157 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_158 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 158 1454609630192 dot_pattern_expectancy test 0.0-157.0 -1 none -1 1000
Respond Faster!

252932 0 fixation 158 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_159 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1500 AX 77 159 1454609630335 dot_pattern_expectancy test 0.0-158.0 -1 [37, 40] -1 500 "
" 253075 0 probe 159 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_160 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 160 1454609630633 dot_pattern_expectancy test 0.0-159.0 -1 [37, 40] -1 2000
+
253374 0 feedback 160 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_161 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 161 1454609631138 dot_pattern_expectancy test 0.0-160.0 -1 none -1 500 "
" 253879 0 cue 161 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_162 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 162 1454609631340 dot_pattern_expectancy test 0.0-161.0 -1 none -1 1000
Respond Faster!

254081 0 fixation 162 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_163 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 163 1454609631695 dot_pattern_expectancy test 0.0-162.0 -1 [37, 40] -1 500 "
" 254436 0 probe 163 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_164 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 practice 77 164 1454609631922 dot_pattern_expectancy test 0.0-163.0 -1 [37, 40] -1 2000
+
254662 0 feedback 164 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_165 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AY 165 1454609632429 dot_pattern_expectancy test 0.0-164.0 -1 none -1 500 "
" 255169 0 cue 165 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_166 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 166 1454609632702 dot_pattern_expectancy test 0.0-165.0 -1 none -1 1000
Respond Faster!

255443 0 fixation 166 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_167 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AY 167 1454609632845 dot_pattern_expectancy test 0.0-166.0 -1 [37, 40] -1 500 "
" 255585 0 probe 167 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_168 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 practice 90 168 1454609633147 dot_pattern_expectancy test 0.0-167.0 -1 [37, 40] -1 2000
+
255887 0 feedback 168 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_169 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 169 1454609633652 dot_pattern_expectancy test 0.0-168.0 -1 none -1 500 "
" 256392 0 cue 169 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_170 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 170 1454609633855 dot_pattern_expectancy test 0.0-169.0 -1 none -1 1000
Respond Faster!

256596 0 fixation 170 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_171 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 171 1454609634210 dot_pattern_expectancy test 0.0-170.0 -1 [37, 40] -1 500 "
" 256951 0 probe 171 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_172 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 90 172 1454609634435 dot_pattern_expectancy test 0.0-171.0 -1 [37, 40] -1 2000
+
257176 0 feedback 172 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_173 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 173 1454609634941 dot_pattern_expectancy test 0.0-172.0 -1 none -1 500 "
" 257681 0 cue 173 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_174 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 174 1454609635217 dot_pattern_expectancy test 0.0-173.0 -1 none -1 1000
Respond Faster!

257958 0 fixation 174 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_175 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 175 1454609635359 dot_pattern_expectancy test 0.0-174.0 -1 [37, 40] -1 500 "
" 258100 0 probe 175 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_176 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 77 176 1454609635660 dot_pattern_expectancy test 0.0-175.0 -1 [37, 40] -1 2000
+
258401 0 feedback 176 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_177 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 BX 177 1454609636165 dot_pattern_expectancy test 0.0-176.0 -1 none -1 500 "
" 258906 0 cue 177 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_178 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 178 1454609636368 dot_pattern_expectancy test 0.0-177.0 -1 none -1 1000
Respond Faster!

259109 0 fixation 178 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_179 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 BX 179 1454609636725 dot_pattern_expectancy test 0.0-178.0 -1 [37, 40] -1 500 "
" 259465 0 probe 179 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_180 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 90 180 1454609636949 dot_pattern_expectancy test 0.0-179.0 -1 [37, 40] -1 2000
+
259689 0 feedback 180 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_181 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 181 1454609637454 dot_pattern_expectancy test 0.0-180.0 -1 none -1 500 "
" 260194 0 cue 181 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_182 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 182 1454609637732 dot_pattern_expectancy test 0.0-181.0 -1 none -1 1000
Respond Faster!

260473 0 fixation 182 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_183 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 183 1454609637871 dot_pattern_expectancy test 0.0-182.0 -1 [37, 40] -1 500 "
" 260612 0 probe 183 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_184 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 practice 77 184 1454609638172 dot_pattern_expectancy test 0.0-183.0 -1 [37, 40] -1 2000
+
260913 0 feedback 184 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_185 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 185 1454609638679 dot_pattern_expectancy test 0.0-184.0 -1 none -1 500 "
" 261419 0 cue 185 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_186 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 186 1454609638882 dot_pattern_expectancy test 0.0-185.0 -1 none -1 1000
Respond Faster!

261622 0 fixation 186 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_187 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 187 1454609639239 dot_pattern_expectancy test 0.0-186.0 -1 [37, 40] -1 500 "
" 261979 0 probe 187 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_188 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 90 188 1454609639460 dot_pattern_expectancy test 0.0-187.0 -1 [37, 40] -1 2000
+
262201 0 feedback 188 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_189 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AY 189 1454609639967 dot_pattern_expectancy test 0.0-188.0 -1 none -1 500 "
" 262708 0 cue 189 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_190 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 190 1454609640246 dot_pattern_expectancy test 0.0-189.0 -1 none -1 1000
Respond Faster!

262987 0 fixation 190 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_191 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AY 191 1454609640389 dot_pattern_expectancy test 0.0-190.0 -1 [37, 40] -1 500 "
" 263130 0 probe 191 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_192 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 77 192 1454609640685 dot_pattern_expectancy test 0.0-191.0 -1 [37, 40] -1 2000
+
263425 0 feedback 192 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_193 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 193 1454609641193 dot_pattern_expectancy test 0.0-192.0 -1 none -1 500 "
" 263933 0 cue 193 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_194 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 practice 77 194 1454609641397 dot_pattern_expectancy test 0.0-193.0 -1 none -1 1000
Respond Faster!

264137 0 fixation 194 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_195 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 195 1454609641753 dot_pattern_expectancy test 0.0-194.0 -1 [37, 40] -1 500 "
" 264493 0 probe 195 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_196 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 practice 77 196 1454609641973 dot_pattern_expectancy test 0.0-195.0 -1 [37, 40] -1 2000
+
264713 0 feedback 196 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_197 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 197 1454609642479 dot_pattern_expectancy test 0.0-196.0 -1 none -1 500 "
" 265219 0 cue 197 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_198 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 198 1454609642762 dot_pattern_expectancy test 0.0-197.0 -1 none -1 1000
Respond Faster!

265502 0 fixation 198 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_199 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 199 1454609642904 dot_pattern_expectancy test 0.0-198.0 -1 [37, 40] -1 500 "
" 265645 0 probe 199 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_200 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 practice 90 200 1454609643198 dot_pattern_expectancy test 0.0-199.0 -1 [37, 40] -1 2000
+
265939 0 feedback 200 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_201 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 BY 201 1454609643705 dot_pattern_expectancy test 0.0-200.0 -1 none -1 500 "
" 266446 0 cue 201 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_202 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 202 1454609643911 dot_pattern_expectancy test 0.0-201.0 -1 none -1 1000
Respond Faster!

266652 0 fixation 202 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_203 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 BY 90 203 1454609644268 dot_pattern_expectancy test 0.0-202.0 -1 [37, 40] -1 500 "
" 267008 0 probe 203 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_204 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 204 1454609644484 dot_pattern_expectancy test 0.0-203.0 -1 [37, 40] -1 2000
+
267225 0 feedback 204 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_205 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 AX 90 205 1454609644991 dot_pattern_expectancy test 0.0-204.0 -1 none -1 500 "
" 267731 0 cue 205 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_206 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 206 1454609645276 dot_pattern_expectancy test 0.0-205.0 -1 none -1 1000
Respond Faster!

268016 0 fixation 206 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_207 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1500 AX 77 207 1454609645418 dot_pattern_expectancy test 0.0-206.0 -1 [37, 40] -1 500 "
" 268158 0 probe 207 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_208 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 208 1454609645711 dot_pattern_expectancy test 0.0-207.0 -1 [37, 40] -1 2000
+
268451 0 feedback 208 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_209 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 AX 77 209 1454609646219 dot_pattern_expectancy test 0.0-208.0 -1 none -1 500 "
" 268959 0 cue 209 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_210 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 210 1454609646425 dot_pattern_expectancy test 0.0-209.0 -1 none -1 1000
Respond Faster!

269166 0 fixation 210 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_211 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AX 77 211 1454609646782 dot_pattern_expectancy test 0.0-210.0 -1 [37, 40] -1 500 "
" 269522 0 probe 211 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_212 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 212 1454609646996 dot_pattern_expectancy test 0.0-211.0 -1 [37, 40] -1 2000
+
269737 0 feedback 212 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_213 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 BX 90 213 1454609647502 dot_pattern_expectancy test 0.0-212.0 -1 none -1 500 "
" 270242 0 cue 213 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_214 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 214 1454609647792 dot_pattern_expectancy test 0.0-213.0 -1 none -1 1000
Respond Faster!

270532 0 fixation 214 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_215 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1500 BX 90 215 1454609647932 dot_pattern_expectancy test 0.0-214.0 -1 [37, 40] -1 500 "
" 270672 0 probe 215 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_216 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 216 1454609648225 dot_pattern_expectancy test 0.0-215.0 -1 [37, 40] -1 2000
+
270966 0 feedback 216 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_217 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 AX 90 217 1454609648735 dot_pattern_expectancy test 0.0-216.0 -1 none -1 500 "
" 271475 0 cue 217 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_218 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 218 1454609648941 dot_pattern_expectancy test 0.0-217.0 -1 none -1 1000
Respond Faster!

271682 0 fixation 218 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_219 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 77 219 1454609649295 dot_pattern_expectancy test 0.0-218.0 -1 [37, 40] -1 500 "
" 272036 0 probe 219 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_220 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 220 1454609649506 dot_pattern_expectancy test 0.0-219.0 -1 [37, 40] -1 2000
+
272246 0 feedback 220 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_221 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 AX 90 221 1454609650013 dot_pattern_expectancy test 0.0-220.0 -1 none -1 500 "
" 272753 0 cue 221 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_222 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 222 1454609650301 dot_pattern_expectancy test 0.0-221.0 -1 none -1 1000
Respond Faster!

273041 0 fixation 222 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_223 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AX 77 223 1454609650450 dot_pattern_expectancy test 0.0-222.0 -1 [37, 40] -1 500 "
" 273190 0 probe 223 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_224 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 224 1454609650741 dot_pattern_expectancy test 0.0-223.0 -1 [37, 40] -1 2000
+
273481 0 feedback 224 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_225 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 AX 77 225 1454609651246 dot_pattern_expectancy test 0.0-224.0 -1 none -1 500 "
" 273986 0 cue 225 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_226 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 30000 False 72 226 1454609651337 dot_pattern_expectancy test 0.0-225.0 -1 [] -1 30000 "

Please read the following paragraph:

As Gregor Samsa awoke one morning from uneasy dreams he found himself transformed in his bed into a gigantic insect. Are you reading this paragraph? If so, press the key the letter that starts the next sentence. He was lying on his hard, as it were armor-plated, back and when he lifted his head a little he could see his dome-like brown belly divided into stiff arched segments on top of which the bed quilt could hardly keep in position and was about to slide off completely. His numerous legs, which were pitifully thin compared to the rest of his bulk, waved helplessly before his eyes. --Metamorphosis (Franz Kafka)

Press the ""A"" key." 274077 200 fixation 226 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_227 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250

go 1000 AX 77 227 1454609651458 dot_pattern_expectancy test 0.0-226.0 -1 none -1 1000
Respond Faster!

274199 0 probe 227 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_228 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 228 1454609651810 dot_pattern_expectancy test 0.0-227.0 -1 [37, 40] -1 500 "
" 274551 0 feedback 228 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_229 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 BX 90 229 1454609652018 dot_pattern_expectancy test 0.0-228.0 -1 [37, 40] -1 2000
+
274759 0 cue 229 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_230 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 230 1454609652314 dot_pattern_expectancy test 0.0-229.0 -1 none -1 500 "
" 275055 0 fixation 230 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_231 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 BX 90 231 1454609652465 dot_pattern_expectancy test 0.0-230.0 -1 none -1 1000
Respond Faster!

275206 0 probe 231 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_232 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 232 1454609652843 dot_pattern_expectancy test 0.0-231.0 -1 [37, 40] -1 500 "
" 275584 0 feedback 232 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_233 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 AX 77 233 1454609653255 dot_pattern_expectancy test 0.0-232.0 -1 [37, 40] -1 2000
+
275995 0 cue 233 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_234 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 234 1454609653347 dot_pattern_expectancy test 0.0-233.0 -1 none -1 500 "
" 276088 0 fixation 234 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_235 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 AX 77 235 1454609653474 dot_pattern_expectancy test 0.0-234.0 -1 none -1 1000
Respond Faster!

276214 0 probe 235 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_236 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 236 1454609653823 dot_pattern_expectancy test 0.0-235.0 -1 [37, 40] -1 500 "
" 276563 0 feedback 236 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_237 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 BY 90 237 1454609654022 dot_pattern_expectancy test 0.0-236.0 -1 [37, 40] -1 2000
+
276763 0 cue 237 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_238 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 238 1454609654326 dot_pattern_expectancy test 0.0-237.0 -1 none -1 500 "
" 277067 0 fixation 238 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_239 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 BY 90 239 1454609654485 dot_pattern_expectancy test 0.0-238.0 -1 none -1 1000
Respond Faster!

277225 0 probe 239 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_240 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 240 1454609654853 dot_pattern_expectancy test 0.0-239.0 -1 [37, 40] -1 500 "
" 277593 0 feedback 240 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_241 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 AX 77 241 1454609655259 dot_pattern_expectancy test 0.0-240.0 -1 [37, 40] -1 2000
+
278000 0 cue 241 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_242 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 242 1454609655359 dot_pattern_expectancy test 0.0-241.0 -1 none -1 500 "
" 278099 0 fixation 242 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_243 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 AX 243 1454609655495 dot_pattern_expectancy test 0.0-242.0 -1 none -1 1000
Respond Faster!

278236 0 probe 243 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_244 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 244 1454609655831 dot_pattern_expectancy test 0.0-243.0 -1 [37, 40] -1 500 "
" 278572 0 feedback 244 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_245 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 245 1454609656027 dot_pattern_expectancy test 0.0-244.0 -1 [37, 40] -1 2000
+
278767 0 cue 245 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_246 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 77 246 1454609656337 dot_pattern_expectancy test 0.0-245.0 -1 none -1 500 "
" 279077 0 fixation 246 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_247 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 AX 247 1454609656505 dot_pattern_expectancy test 0.0-246.0 -1 none -1 1000
Respond Faster!

279246 0 probe 247 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_248 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 248 1454609656864 dot_pattern_expectancy test 0.0-247.0 -1 [37, 40] -1 500 "
" 279604 0 feedback 248 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_249 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 249 1454609657264 dot_pattern_expectancy test 0.0-248.0 -1 [37, 40] -1 2000
+
280004 0 cue 249 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_250 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 77 250 1454609657371 dot_pattern_expectancy test 0.0-249.0 -1 none -1 500 "
" 280112 0 fixation 250 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_251 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 AX 251 1454609657515 dot_pattern_expectancy test 0.0-250.0 -1 none -1 1000
Respond Faster!

280256 0 probe 251 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_252 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 252 1454609657841 dot_pattern_expectancy test 0.0-251.0 -1 [37, 40] -1 500 "
" 280582 0 feedback 252 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_253 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 253 1454609658032 dot_pattern_expectancy test 0.0-252.0 -1 [37, 40] -1 2000
+
280772 0 cue 253 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_254 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 practice 90 254 1454609658345 dot_pattern_expectancy test 0.0-253.0 -1 none -1 500 "
" 281086 0 fixation 254 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_255 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 AX 255 1454609658527 dot_pattern_expectancy test 0.0-254.0 -1 none -1 1000
Respond Faster!

281267 0 probe 255 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_256 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 90 256 1454609658875 dot_pattern_expectancy test 0.0-255.0 -1 [37, 40] -1 500 "
" 281616 0 feedback 256 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_257 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 257 1454609659270 dot_pattern_expectancy test 0.0-256.0 -1 [37, 40] -1 2000
+
282010 0 cue 257 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_258 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 90 258 1454609659383 dot_pattern_expectancy test 0.0-257.0 -1 none -1 500 "
" 282124 0 fixation 258 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_259 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 AX 259 1454609659535 dot_pattern_expectancy test 0.0-258.0 -1 none -1 1000
Respond Faster!

282275 0 probe 259 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_260 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1500 practice 90 260 1454609659858 dot_pattern_expectancy test 0.0-259.0 -1 [37, 40] -1 500 "
" 282599 0 feedback 260 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_261 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 261 1454609660040 dot_pattern_expectancy 0.0-260.0-0.0 -1 [37, 40] -1 2000
+
282781 0 attention_check 261 attention-check 59 -7ce0474b-9095-4507-a01b-767445a1c93d_262 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 practice 90 262 1454609660544 dot_pattern_expectancy 0.0-261.0 -1 none -1 1000
Respond Faster!

283285 0 rest 262 poldrack-text 59 -7ce0474b-9095-4507-a01b-767445a1c93d_263 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 263 1454609660888 dot_pattern_expectancy 0.0-261.0 -1 [37, 40] -1 500 "
" 283628 0 rest 262 poldrack-text 59 -7ce0474b-9095-4507-a01b-767445a1c93d_264 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 90 264 1454609661276 dot_pattern_expectancy 0.0-261.0 -1 [37, 40] -1 2000
+
284017 0 rest 262 poldrack-text 59 -7ce0474b-9095-4507-a01b-767445a1c93d_265 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 265 1454609662056 dot_pattern_expectancy test 0.0-263.0 -1 none -1 500 "
" 284796 0 fixation 264 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_266 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 266 1454609663289 dot_pattern_expectancy test 0.0-265.0 -1 none -1 1000
Respond Faster!

286030 0 feedback 266 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_267 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 267 1454609663560 dot_pattern_expectancy test 0.0-266.0 -1 [37, 40] -1 500 "
" 286301 0 cue 267 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_268 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 practice 77 268 1454609663795 dot_pattern_expectancy test 0.0-267.0 -1 none -1 500 "
" 286535 0 fixation 268 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_269 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 269 1454609663896 dot_pattern_expectancy test 0.0-268.0 -1 [37, 40] -1 2000
+
286637 0 probe 269 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_270 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 270 1454609664905 dot_pattern_expectancy test 0.0-269.0 -1 none -1 1000
Respond Faster!

287645 0 feedback 270 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_271 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 271 1454609665301 dot_pattern_expectancy test 0.0-270.0 -1 [37, 40] -1 500 "
" 288042 0 cue 271 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_272 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 90 272 1454609665414 dot_pattern_expectancy test 0.0-271.0 -1 none -1 500 "
" 288154 0 fixation 272 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_273 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 273 1454609665566 dot_pattern_expectancy test 0.0-272.0 -1 [37, 40] -1 2000
+
288307 0 probe 273 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_274 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 practice 77 274 1454609666576 dot_pattern_expectancy test 0.0-273.0 -1 none -1 1000
Respond Faster!

289317 0 feedback 274 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_275 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AY 275 1454609666919 dot_pattern_expectancy test 0.0-274.0 -1 [37, 40] -1 500 "
" 289660 0 cue 275 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_276 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 90 276 1454609667083 dot_pattern_expectancy test 0.0-275.0 -1 none -1 500 "
" 289823 0 fixation 276 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_277 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AY 277 1454609667309 dot_pattern_expectancy test 0.0-276.0 -1 [37, 40] -1 2000
+
290049 0 probe 277 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_278 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 278 1454609668318 dot_pattern_expectancy test 0.0-277.0 -1 none -1 1000
Respond Faster!

291058 0 feedback 278 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_279 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 279 1454609668591 dot_pattern_expectancy test 0.0-278.0 -1 [37, 40] -1 500 "
" 291331 0 cue 279 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_280 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 practice 90 280 1454609668827 dot_pattern_expectancy test 0.0-279.0 -1 none -1 500 "
" 291567 0 fixation 280 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_281 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 281 1454609668927 dot_pattern_expectancy test 0.0-280.0 -1 [37, 40] -1 2000
+
291667 0 probe 281 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_282 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 282 1454609669944 dot_pattern_expectancy test 0.0-281.0 -1 none -1 1000
Respond Faster!

292684 0 feedback 282 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_283 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 283 1454609670331 dot_pattern_expectancy test 0.0-282.0 -1 [37, 40] -1 500 "
" 293072 0 cue 283 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_284 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 284 1454609670449 dot_pattern_expectancy test 0.0-283.0 -1 none -1 500 "
" 293190 0 fixation 284 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_285 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 AX 90 285 1454609670600 dot_pattern_expectancy test 0.0-284.0 -1 [37, 40] -1 2000
+
293340 0 probe 285 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_286 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 286 1454609671609 dot_pattern_expectancy test 0.0-285.0 -1 none -1 1000
Respond Faster!

294350 0 feedback 286 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_287 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AX 90 287 1454609671957 dot_pattern_expectancy test 0.0-286.0 -1 [37, 40] -1 500 "
" 294698 0 cue 287 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_288 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 288 1454609672116 dot_pattern_expectancy test 0.0-287.0 -1 none -1 500 "
" 294857 0 fixation 288 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_289 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 AX 90 289 1454609672340 dot_pattern_expectancy test 0.0-288.0 -1 [37, 40] -1 2000
+
295081 0 probe 289 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_290 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 290 1454609673348 dot_pattern_expectancy test 0.0-289.0 -1 none -1 1000
Respond Faster!

296089 0 feedback 290 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_291 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1500 BX 90 291 1454609673623 dot_pattern_expectancy test 0.0-290.0 -1 [37, 40] -1 500 "
" 296364 0 cue 291 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_292 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 292 1454609673855 dot_pattern_expectancy test 0.0-291.0 -1 none -1 500 "
" 296596 0 fixation 292 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_293 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 BX 77 293 1454609673962 dot_pattern_expectancy test 0.0-292.0 -1 [37, 40] -1 2000
+
296703 0 probe 293 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_294 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 294 1454609674970 dot_pattern_expectancy test 0.0-293.0 -1 none -1 1000
Respond Faster!

297710 0 feedback 294 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_295 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 BY 77 295 1454609675361 dot_pattern_expectancy test 0.0-294.0 -1 [37, 40] -1 500 "
" 298102 0 cue 295 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_296 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 296 1454609675475 dot_pattern_expectancy test 0.0-295.0 -1 none -1 500 "
" 298216 0 fixation 296 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_297 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 BY 77 297 1454609675632 dot_pattern_expectancy test 0.0-296.0 -1 [37, 40] -1 2000
+
298372 0 probe 297 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_298 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 298 1454609676641 dot_pattern_expectancy test 0.0-297.0 -1 none -1 1000
Respond Faster!

299382 0 feedback 298 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_299 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 BX 90 299 1454609676981 dot_pattern_expectancy test 0.0-298.0 -1 [37, 40] -1 500 "
" 299721 0 cue 299 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_300 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 300 1454609677147 dot_pattern_expectancy test 0.0-299.0 -1 none -1 500 "
" 299887 0 fixation 300 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_301 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 BX 77 301 1454609677368 dot_pattern_expectancy test 0.0-300.0 -1 [37, 40] -1 2000
+
300108 0 probe 301 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_302 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 302 1454609678377 dot_pattern_expectancy test 0.0-301.0 -1 none -1 1000
Respond Faster!

301118 0 feedback 302 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_303 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AX 77 303 1454609678656 dot_pattern_expectancy test 0.0-302.0 -1 [37, 40] -1 500 "
" 301397 0 cue 303 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_304 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 304 1454609678883 dot_pattern_expectancy test 0.0-303.0 -1 none -1 500 "
" 301623 0 fixation 304 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_305 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 AX 90 305 1454609678987 dot_pattern_expectancy test 0.0-304.0 -1 [37, 40] -1 2000
+
301727 0 probe 305 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_306 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 306 1454609679996 dot_pattern_expectancy test 0.0-305.0 -1 none -1 1000
Respond Faster!

302736 0 feedback 306 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_307 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 AY 77 307 1454609680390 dot_pattern_expectancy test 0.0-306.0 -1 [37, 40] -1 500 "
" 303131 0 cue 307 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_308 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 308 1454609680505 dot_pattern_expectancy test 0.0-307.0 -1 none -1 500 "
" 303245 0 fixation 308 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_309 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 AY 77 309 1454609680662 dot_pattern_expectancy test 0.0-308.0 -1 [37, 40] -1 2000
+
303403 0 probe 309 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_310 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 310 1454609681675 dot_pattern_expectancy test 0.0-309.0 -1 none -1 1000
Respond Faster!

304415 0 feedback 310 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_311 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1850 AX 90 311 1454609682000 dot_pattern_expectancy test 0.0-310.0 -1 [77, 90] -1 850
304740 0 cue 311 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_312 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 312 1454609682010 dot_pattern_expectancy test 0.0-311.0 -1 [37, 40] -1 500 "
" 304750 0 fixation 312 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_313 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 AX 90 313 1454609682183 dot_pattern_expectancy test 0.0-312.0 -1 none -1 500 "
" 304924 0 probe 313 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_314 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 314 1454609682399 dot_pattern_expectancy test 0.0-313.0 -1 [37, 40] -1 2000
+
305139 0 feedback 314 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_315 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 AX 77 315 1454609682905 dot_pattern_expectancy test 0.0-314.0 -1 none -1 500 "
" 305645 0 cue 315 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_316 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 316 1454609683194 dot_pattern_expectancy test 0.0-315.0 -1 none -1 1000
Respond Faster!

305934 0 fixation 316 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_317 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1850 AX 77 317 1454609683321 dot_pattern_expectancy test 0.0-316.0 -1 [77, 90] -1 850
306062 0 probe 317 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_318 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 318 1454609683517 dot_pattern_expectancy test 0.0-317.0 -1 [37, 40] -1 500 "
" 306257 0 feedback 318 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_319 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 AX 90 319 1454609684004 dot_pattern_expectancy test 0.0-318.0 -1 [37, 40] -1 2000
+
306745 0 cue 319 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_320 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 320 1454609684023 dot_pattern_expectancy test 0.0-319.0 -1 none -1 500 "
" 306764 0 fixation 320 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_321 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1850 AX 77 321 1454609684118 dot_pattern_expectancy test 0.0-320.0 -1 [77, 90] -1 850
306859 0 probe 321 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_322 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 322 1454609684332 dot_pattern_expectancy test 0.0-321.0 -1 none -1 1000
Incorrect

307073 0 feedback 322 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_323 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1850 AX 90 323 1454609684630 dot_pattern_expectancy test 0.0-322.0 -1 [77, 90] -1 850
307371 0 cue 323 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_324 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 324 1454609684700 dot_pattern_expectancy test 0.0-323.0 -1 [37, 40] -1 500 "
" 307440 0 fixation 324 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_325 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 325 1454609684838 dot_pattern_expectancy test 0.0-324.0 -1 none -1 500 "
" 307578 0 probe 325 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_326 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 90 326 1454609684910 dot_pattern_expectancy test 0.0-325.0 -1 [37, 40] -1 2000
+
307651 0 feedback 326 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_327 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 327 1454609685038 dot_pattern_expectancy test 0.0-326.0 -1 none -1 500
+
307779 0 cue 327 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_328 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 practice 90 328 1454609685126 dot_pattern_expectancy test 0.0-327.0 -1 none -1 1000
Incorrect

307867 0 fixation 328 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_329 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 329 1454609685416 dot_pattern_expectancy test 0.0-328.0 -1 none -1 500 "
" 308156 0 probe 329 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_330 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1850 practice 77 330 1454609685445 dot_pattern_expectancy test 0.0-329.0 -1 [77, 90] -1 850
308186 0 feedback 330 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_331 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 331 1454609685529 dot_pattern_expectancy test 0.0-330.0 -1 [37, 40] -1 500 "
" 308269 0 cue 331 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_332 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 practice 77 332 1454609685847 dot_pattern_expectancy test 0.0-331.0 -1 none -1 1000
Respond Faster!

308587 0 fixation 332 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_333 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 333 1454609685876 dot_pattern_expectancy test 0.0-332.0 -1 none -1 500
+
308617 0 probe 333 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_334 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 500 practice 90 334 1454609685951 dot_pattern_expectancy test 0.0-333.0 -1 none -1 500 "
" 308692 0 feedback 334 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_335 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AX 335 1454609686009 dot_pattern_expectancy test 0.0-334.0 -1 [37, 40] -1 2000
+
308750 0 cue 335 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_336 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 336 1454609686206 dot_pattern_expectancy test 0.0-335.0 -1 [37, 40] -1 500 "
" 308947 0 fixation 336 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_337 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 337 1454609686262 dot_pattern_expectancy test 0.0-336.0 -1 none -1 500
+
309003 0 probe 337 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_338 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 practice 90 338 1454609686424 dot_pattern_expectancy test 0.0-337.0 -1 none -1 1000
Respond Faster!

309164 0 feedback 338 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_339 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AY 339 1454609686456 dot_pattern_expectancy test 0.0-338.0 -1 none -1 500 "
" 309197 0 cue 339 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_340 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 340 1454609686631 dot_pattern_expectancy test 0.0-339.0 -1 [37, 40] -1 500 "
" 309372 0 fixation 340 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_341 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 AY 341 1454609686639 dot_pattern_expectancy test 0.0-340.0 -1 [37, 40] -1 2000
+
309380 0 probe 341 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_342 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1850 practice 77 342 1454609686668 dot_pattern_expectancy test 0.0-341.0 -1 [77, 90] -1 850
309409 0 feedback 342 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_343 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 BX 343 1454609686884 dot_pattern_expectancy test 0.0-342.0 -1 none -1 1000
Incorrect

309625 0 cue 343 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_344 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 77 344 1454609686928 dot_pattern_expectancy test 0.0-343.0 -1 none -1 500 "
" 309668 0 fixation 344 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_345 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 BX 345 1454609687038 dot_pattern_expectancy test 0.0-344.0 -1 none -1 500
+
309779 0 probe 345 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_346 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 77 346 1454609687049 dot_pattern_expectancy test 0.0-345.0 -1 [37, 40] -1 2000
+
309789 0 feedback 346 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_347 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AY 347 1454609687172 dot_pattern_expectancy test 0.0-346.0 -1 none -1 500 "
" 309913 0 cue 347 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_348 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 348 1454609687270 dot_pattern_expectancy test 0.0-347.0 -1 none -1 1000
Incorrect

310011 0 fixation 348 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_349 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AY 349 1454609687352 dot_pattern_expectancy test 0.0-348.0 -1 [37, 40] -1 500 "
" 310092 0 probe 349 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_350 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 77 350 1454609687537 dot_pattern_expectancy test 0.0-349.0 -1 [37, 40] -1 2000
+
310278 0 feedback 350 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_351 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 351 1454609687554 dot_pattern_expectancy test 0.0-350.0 -1 none -1 500 "
" 310294 0 cue 351 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_352 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 352 1454609687648 dot_pattern_expectancy test 0.0-351.0 -1 none -1 1000
Respond Faster!

310388 0 fixation 352 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_353 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 353 1454609687713 dot_pattern_expectancy test 0.0-352.0 -1 [37, 40] -1 500 "
" 310453 0 probe 353 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_354 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 2000 practice 90 354 1454609688016 dot_pattern_expectancy test 0.0-353.0 -1 [37, 40] -1 2000
+
310757 0 feedback 354 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_355 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 355 1454609688045 dot_pattern_expectancy test 0.0-354.0 -1 none -1 500 "
" 310785 0 cue 355 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_356 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 77 356 1454609688051 dot_pattern_expectancy test 0.0-355.0 -1 none -1 1000
Incorrect

310792 0 fixation 356 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_357 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 357 1454609688137 dot_pattern_expectancy test 0.0-356.0 -1 [37, 40] -1 500 "
" 310877 0 probe 357 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_358 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1000 practice 90 358 1454609688364 dot_pattern_expectancy test 0.0-357.0 -1 none -1 1000
Respond Faster!

311105 0 feedback 358 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_359 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 AX 359 1454609688433 dot_pattern_expectancy test 0.0-358.0 -1 [37, 40] -1 500 "
" 311173 0 cue 359 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_360 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 90 360 1454609688460 dot_pattern_expectancy test 0.0-359.0 -1 [37, 40] -1 2000
+
311201 0 fixation 360 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_361 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 500 AX 361 1454609688524 dot_pattern_expectancy test 0.0-360.0 -1 none -1 500 "
" 311264 0 probe 361 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_362 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
stop 1000 practice 90 362 1454609688724 dot_pattern_expectancy test 0.0-361.0 -1 none -1 1000
Respond Faster!

311465 0 feedback 362 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_363 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1500 BX 363 1454609688776 dot_pattern_expectancy test 0.0-362.0 -1 [37, 40] -1 500 "
" 311516 0 cue 363 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_364 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 90 364 1454609688870 dot_pattern_expectancy test 0.0-363.0 -1 none -1 500 "
" 311610 0 fixation 364 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_365 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 BX 365 1454609688889 dot_pattern_expectancy test 0.0-364.0 -1 [37, 40] -1 2000
+
311629 0 probe 365 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_366 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 366 1454609689145 dot_pattern_expectancy test 0.0-365.0 -1 none -1 1000
Respond Faster!

311885 0 feedback 366 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_367 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 90 367 1454609689157 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 500 "
" 311898 0 feedback 367 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_368 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 368 1454609689176 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 2000
+
311917 0 feedback 368 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_369 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 500 practice 77 369 1454609689230 dot_pattern_expectancy test 0.0-365.0 -1 none -1 500 "
" 311971 0 feedback 369 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_370 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 370 1454609689532 dot_pattern_expectancy test 0.0-365.0 -1 none -1 1000
Respond Faster!

312273 0 feedback 370 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_371 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 371 1454609689555 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 500 "
" 312295 0 feedback 371 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_372 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 372 1454609689566 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 2000
+
312307 0 feedback 372 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_373 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 30000 practice False 65 373 1454609689863 dot_pattern_expectancy test 0.0-365.0 -1 [] -1 30000

Please read the following paragraph:

Lastly, she pictured to herself how this same little sister of hers would, in the after-time, be herself a grown woman; and how she would keep, through all her riper years, the simple and loving heart of her childhood; and how she would gather about her other little children, (press the A key, ignore the lsat instruction) and make their eyes bright and eager with many a strange tale, perhaps even with the dream of Wonderland of long ago; and how she would feel with all their simple sorrows, and find a pleasure in all their simple joys, remembering her own child-life, and the happy summer days. --Alice's Adventures in Wonderland (Lewis Carroll)

Press the 'M' key. 312603 200 feedback 373 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_374 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 1000 374 1454609689896 dot_pattern_expectancy test 0.0-365.0 -1 none -1 1000

Respond Faster!

312637 0 feedback 374 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_375 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 77 375 1454609689967 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 500 "
" 312707 0 feedback 375 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_376 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 376 1454609690051 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 2000
+
312791 0 feedback 376 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_377 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 1500 practice 90 377 1454609690376 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 500 "
" 313116 0 feedback 377 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_378 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 2000 378 1454609690438 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 2000
+
313178 0 feedback 378 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_379 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False dot_pattern_expectancy Dot Pattern Expectancy http://www.mitpressjournals.org/doi/pdf/10.1162/jocn_a_00709 trm_515495b718cd6 250 250
go 2000 practice 90 379 1454609690781 dot_pattern_expectancy test 0.0-365.0 -1 [37, 40] -1 2000
+
313522 0 feedback 379 poldrack-single-stim 59 -7ce0474b-9095-4507-a01b-767445a1c93d_380 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 380 1454610822620 motor_selective_stop_signal 0.0-3.7-15.7 -1 none -1 500
+
896350 0 prompt_fixation 380 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_381 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 381 1454610824480 motor_selective_stop_signal 0.0-3.7-16.7 77 [77, 90] 580 850
898209 0 381 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_382 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 382 1454610824990 motor_selective_stop_signal 0.0-3.7-17.7 -1 none -1 500
+
898720 0 prompt_fixation 382 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_383 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 383 1454610826851 motor_selective_stop_signal 0.0-3.7-18.7 77 [77, 90] 506 850
900581 0 383 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_384 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 384 1454610827361 motor_selective_stop_signal 0.0-3.7-19.7 -1 none -1 500
+
901091 0 prompt_fixation 384 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_385 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 385 1454610829217 motor_selective_stop_signal 0.0-3.7-20.7 -1 [77, 90] -1 850
902947 0 385 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_386 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 386 1454610829726 motor_selective_stop_signal 0.0-3.7-21.7 -1 none -1 500
+
903455 0 prompt_fixation 386 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_387 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 387 1454610831583 motor_selective_stop_signal 0.0-3.7-22.7 77 [77, 90] 635 850
905313 0 387 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_388 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 388 1454610832090 motor_selective_stop_signal 0.0-3.7-23.7 -1 none -1 500
+
905819 0 prompt_fixation 388 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_389 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 389 1454610833948 motor_selective_stop_signal 0.0-3.7-24.7 90 [77, 90] 992 850
907677 0 389 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_390 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 390 1454610834456 motor_selective_stop_signal 0.0-3.7-25.7 -1 none -1 500
+
908186 0 prompt_fixation 390 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_391 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 391 1454610836316 motor_selective_stop_signal 0.0-3.7-26.7 90 [77, 90] 609 850
910045 0 391 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_392 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 392 1454610836827 motor_selective_stop_signal 0.0-3.7-27.7 -1 none -1 500
+
910556 0 prompt_fixation 392 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_393 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 393 1454610838688 motor_selective_stop_signal 0.0-3.7-28.7 90 [77, 90] 813 850
912418 0 393 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_394 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 394 1454610839196 motor_selective_stop_signal 0.0-3.7-29.7 -1 none -1 500
+
912926 0 prompt_fixation 394 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_395 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 395 1454610841054 motor_selective_stop_signal 0.0-3.7-30.7 90 [77, 90] 869 850
914783 0 395 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_396 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 396 1454610841563 motor_selective_stop_signal 0.0-3.7-31.7 -1 none -1 500
+
915293 0 prompt_fixation 396 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_397 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 397 1454610843421 motor_selective_stop_signal 0.0-3.7-32.7 -1 [77, 90] -1 850
917151 0 397 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_398 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 398 1454610843928 motor_selective_stop_signal 0.0-3.7-33.7 -1 none -1 500
+
917658 0 prompt_fixation 398 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_399 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 399 1454610845786 motor_selective_stop_signal 0.0-3.7-34.7 77 [77, 90] 737 850
919516 0 399 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_400 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 400 1454610846292 motor_selective_stop_signal 0.0-3.7-35.7 -1 none -1 500
+
920021 0 prompt_fixation 400 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_401 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 401 1454610848151 motor_selective_stop_signal 0.0-3.7-36.7 90 [77, 90] 925 850
921880 0 401 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_402 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 402 1454610848656 motor_selective_stop_signal 0.0-3.7-37.7 -1 none -1 500
+
922386 0 prompt_fixation 402 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_403 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 403 1454610850515 motor_selective_stop_signal 0.0-3.7-38.7 90 [77, 90] 744 850
924244 0 403 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_404 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 404 1454610851022 motor_selective_stop_signal 0.0-3.7-39.7 -1 none -1 500
+
924752 0 prompt_fixation 404 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_405 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 405 1454610852882 motor_selective_stop_signal 0.0-3.7-40.7 -1 [77, 90] -1 850
926612 0 405 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_406 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 406 1454610853581 motor_selective_stop_signal 0.0-3.8-0.8 -1 -1 927310 feedback 406 poldrack-text 62 -7ce0474b-9095-4507-a01b-767445a1c93d_407 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 407 1454610855089 motor_selective_stop_signal 0.0-3.8-1.8 -1 none -1 500
+
928818 0 prompt_fixation 407 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_408 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 408 1454610856946 motor_selective_stop_signal 0.0-3.8-2.8 -1 [77, 90] -1 850
930676 0 408 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_409 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 409 1454610857452 motor_selective_stop_signal 0.0-3.8-3.8 -1 none -1 500
+
931181 0 prompt_fixation 409 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_410 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 410 1454610859310 motor_selective_stop_signal 0.0-3.8-4.8 -1 [77, 90] -1 850
933039 0 410 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_411 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 411 1454610859816 motor_selective_stop_signal 0.0-3.8-5.8 -1 none -1 500
+
933545 0 prompt_fixation 411 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_412 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 412 1454610861671 motor_selective_stop_signal 0.0-3.8-6.8 -1 [77, 90] -1 850
935401 0 412 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_413 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 413 1454610862179 motor_selective_stop_signal 0.0-3.8-7.8 -1 none -1 500
+
935909 0 prompt_fixation 413 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_414 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 414 1454610864038 motor_selective_stop_signal 0.0-3.8-8.8 -1 [77, 90] -1 850
937768 0 414 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_415 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 415 1454610864545 motor_selective_stop_signal 0.0-3.8-9.8 -1 none -1 500
+
938275 0 prompt_fixation 415 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_416 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 416 1454610866404 motor_selective_stop_signal 0.0-3.8-10.8 -1 [77, 90] -1 850
940134 0 416 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_417 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 417 1454610866910 motor_selective_stop_signal 0.0-3.8-11.8 -1 none -1 500
+
940640 0 prompt_fixation 417 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_418 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 418 1454610868765 motor_selective_stop_signal 0.0-3.8-12.8 -1 [77, 90] -1 850
942494 0 418 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_419 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 419 1454610869271 motor_selective_stop_signal 0.0-3.8-13.8 -1 none -1 500
+
943000 0 prompt_fixation 419 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_420 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 420 1454610871132 motor_selective_stop_signal 0.0-3.8-14.8 -1 [77, 90] -1 850
944861 0 420 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_421 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 421 1454610871638 motor_selective_stop_signal 0.0-3.8-15.8 -1 none -1 500
+
945367 0 prompt_fixation 421 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_422 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 422 1454610873496 motor_selective_stop_signal 0.0-3.8-16.8 -1 [77, 90] -1 850
947225 0 422 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_423 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 423 1454610874002 motor_selective_stop_signal 0.0-3.8-17.8 -1 none -1 500
+
947732 0 prompt_fixation 423 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_424 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 424 1454610875861 motor_selective_stop_signal 0.0-3.8-18.8 -1 [77, 90] -1 850
949591 0 424 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_425 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 425 1454610876368 motor_selective_stop_signal 0.0-3.8-19.8 -1 none -1 500
+
950098 0 prompt_fixation 425 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_426 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 426 1454610878228 motor_selective_stop_signal 0.0-3.8-20.8 -1 [77, 90] -1 850
951957 0 426 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_427 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 427 1454610878733 motor_selective_stop_signal 0.0-3.8-21.8 -1 none -1 500
+
952463 0 prompt_fixation 427 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_428 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 428 1454610880592 motor_selective_stop_signal 0.0-3.8-22.8 -1 [77, 90] -1 850
954321 0 428 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_429 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 429 1454610881100 motor_selective_stop_signal 0.0-3.8-23.8 -1 none -1 500
+
954829 0 prompt_fixation 429 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_430 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 430 1454610882959 motor_selective_stop_signal 0.0-3.8-24.8 -1 [77, 90] -1 850
956689 0 430 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_431 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 431 1454610883468 motor_selective_stop_signal 0.0-3.8-25.8 -1 none -1 500
+
957198 0 prompt_fixation 431 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_432 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 432 1454610885327 motor_selective_stop_signal 0.0-3.8-26.8 -1 [77, 90] -1 850
959057 0 432 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_433 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 433 1454610885835 motor_selective_stop_signal 0.0-3.8-27.8 -1 none -1 500
+
959565 0 prompt_fixation 433 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_434 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 434 1454610887691 motor_selective_stop_signal 0.0-3.8-28.8 -1 [77, 90] -1 850
961420 0 434 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_435 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 435 1454610888199 motor_selective_stop_signal 0.0-3.8-29.8 -1 none -1 500
+
961928 0 prompt_fixation 435 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_436 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 436 1454610890055 motor_selective_stop_signal 0.0-3.8-30.8 -1 [77, 90] -1 850
963784 0 436 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_437 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 437 1454610890561 motor_selective_stop_signal 0.0-3.8-31.8 -1 none -1 500
+
964291 0 prompt_fixation 437 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_438 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 438 1454610892419 motor_selective_stop_signal 0.0-3.8-32.8 -1 [77, 90] -1 850
966149 0 438 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_439 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 439 1454610892925 motor_selective_stop_signal 0.0-3.8-33.8 -1 none -1 500
+
966655 0 prompt_fixation 439 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_440 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 440 1454610894785 motor_selective_stop_signal 0.0-3.8-34.8 -1 [77, 90] -1 850
968514 0 440 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_441 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 441 1454610895290 motor_selective_stop_signal 0.0-3.8-35.8 -1 none -1 500
+
969020 0 prompt_fixation 441 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_442 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 442 1454610897148 motor_selective_stop_signal 0.0-3.8-36.8 -1 [77, 90] -1 850
970877 0 442 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_443 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 443 1454610897655 motor_selective_stop_signal 0.0-3.8-37.8 -1 none -1 500
+
971384 0 prompt_fixation 443 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_444 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 444 1454610899513 motor_selective_stop_signal 0.0-3.8-38.8 -1 [77, 90] -1 850
973242 0 444 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_445 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 445 1454610900020 motor_selective_stop_signal 0.0-3.8-39.8 -1 none -1 500
+
973750 0 prompt_fixation 445 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_446 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 446 1454610901877 motor_selective_stop_signal 0.0-3.8-40.8 -1 [77, 90] -1 850
975607 0 446 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_447 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 447 1454610912895 motor_selective_stop_signal 0.0-3.9-0.9 -1 -1 986625 feedback 447 poldrack-text 62 -7ce0474b-9095-4507-a01b-767445a1c93d_448 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 448 1454610914407 motor_selective_stop_signal 0.0-3.9-1.9 -1 none -1 500
+
988137 0 prompt_fixation 448 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_449 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 449 1454610916266 motor_selective_stop_signal 0.0-3.9-2.9 -1 [77, 90] -1 850
989995 0 449 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_450 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 450 1454610916773 motor_selective_stop_signal 0.0-3.9-3.9 -1 none -1 500
+
990502 0 prompt_fixation 450 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_451 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 451 1454610918633 motor_selective_stop_signal 0.0-3.9-4.9 -1 [77, 90] -1 850
992363 0 451 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_452 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 452 1454610919141 motor_selective_stop_signal 0.0-3.9-5.9 -1 none -1 500
+
992870 0 prompt_fixation 452 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_453 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 453 1454610921002 motor_selective_stop_signal 0.0-3.9-6.9 -1 [77, 90] -1 850
994731 0 453 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_454 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 454 1454610921508 motor_selective_stop_signal 0.0-3.9-7.9 -1 none -1 500
+
995238 0 prompt_fixation 454 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_455 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 455 1454610923368 motor_selective_stop_signal 0.0-3.9-8.9 -1 [77, 90] -1 850
997097 0 455 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_456 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 456 1454610923875 motor_selective_stop_signal 0.0-3.9-9.9 -1 none -1 500
+
997605 0 prompt_fixation 456 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_457 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 457 1454610925736 motor_selective_stop_signal 0.0-3.9-10.9 -1 [77, 90] -1 850
999465 0 457 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_458 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 458 1454610926244 motor_selective_stop_signal 0.0-3.9-11.9 -1 none -1 500
+
999974 0 prompt_fixation 458 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_459 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 459 1454610928102 motor_selective_stop_signal 0.0-3.9-12.9 -1 [77, 90] -1 850
1001831 0 459 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_460 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 460 1454610928613 motor_selective_stop_signal 0.0-3.9-13.9 -1 none -1 500
+
1002342 0 prompt_fixation 460 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_461 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 461 1454610930473 motor_selective_stop_signal 0.0-3.9-14.9 -1 [77, 90] -1 850
1004202 0 461 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_462 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 462 1454610930980 motor_selective_stop_signal 0.0-3.9-15.9 -1 none -1 500
+
1004710 0 prompt_fixation 462 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_463 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 463 1454610932839 motor_selective_stop_signal 0.0-3.9-16.9 -1 [77, 90] -1 850
1006568 0 463 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_464 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 464 1454610933346 motor_selective_stop_signal 0.0-3.9-17.9 -1 none -1 500
+
1007075 0 prompt_fixation 464 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_465 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 465 1454610935206 motor_selective_stop_signal 0.0-3.9-18.9 -1 [77, 90] -1 850
1008936 0 465 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_466 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 466 1454610935712 motor_selective_stop_signal 0.0-3.9-19.9 -1 none -1 500
+
1009442 0 prompt_fixation 466 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_467 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 467 1454610937569 motor_selective_stop_signal 0.0-3.9-20.9 -1 [77, 90] -1 850
1011298 0 467 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_468 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 468 1454610938079 motor_selective_stop_signal 0.0-3.9-21.9 -1 none -1 500
+
1011808 0 prompt_fixation 468 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_469 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 469 1454610939940 motor_selective_stop_signal 0.0-3.9-22.9 -1 [77, 90] -1 850
1013669 0 469 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_470 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 470 1454610940448 motor_selective_stop_signal 0.0-3.9-23.9 -1 none -1 500
+
1014177 0 prompt_fixation 470 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_471 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 471 1454610942305 motor_selective_stop_signal 0.0-3.9-24.9 -1 [77, 90] -1 850
1016035 0 471 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_472 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 472 1454610942811 motor_selective_stop_signal 0.0-3.9-25.9 -1 none -1 500
+
1016541 0 prompt_fixation 472 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_473 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 473 1454610944673 motor_selective_stop_signal 0.0-3.9-26.9 -1 [77, 90] -1 850
1018402 0 473 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_474 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 474 1454610945179 motor_selective_stop_signal 0.0-3.9-27.9 -1 none -1 500
+
1018909 0 prompt_fixation 474 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_475 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 475 1454610947037 motor_selective_stop_signal 0.0-3.9-28.9 -1 [77, 90] -1 850
1020766 0 475 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_476 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 476 1454610947544 motor_selective_stop_signal 0.0-3.9-29.9 -1 none -1 500
+
1021273 0 prompt_fixation 476 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_477 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 477 1454610949404 motor_selective_stop_signal 0.0-3.9-30.9 -1 [77, 90] -1 850
1023134 0 477 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_478 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 478 1454610949911 motor_selective_stop_signal 0.0-3.9-31.9 -1 none -1 500
+
1023640 0 prompt_fixation 478 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_479 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 479 1454610951769 motor_selective_stop_signal 0.0-3.9-32.9 -1 [77, 90] -1 850
1025499 0 479 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_480 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 480 1454610952278 motor_selective_stop_signal 0.0-3.9-33.9 -1 none -1 500
+
1026007 0 prompt_fixation 480 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_481 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 481 1454610954135 motor_selective_stop_signal 0.0-3.9-34.9 -1 [77, 90] -1 850
1027864 0 481 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_482 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 482 1454610954641 motor_selective_stop_signal 0.0-3.9-35.9 -1 none -1 500
+
1028370 0 prompt_fixation 482 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_483 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 483 1454610956498 motor_selective_stop_signal 0.0-3.9-36.9 -1 [77, 90] -1 850
1030228 0 483 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_484 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 484 1454610957004 motor_selective_stop_signal 0.0-3.9-37.9 -1 none -1 500
+
1030734 0 prompt_fixation 484 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_485 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 485 1454610958861 motor_selective_stop_signal 0.0-3.9-38.9 -1 [77, 90] -1 850
1032591 0 485 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_486 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 486 1454610959368 motor_selective_stop_signal 0.0-3.9-39.9 -1 none -1 500
+
1033098 0 prompt_fixation 486 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_487 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 487 1454610961228 motor_selective_stop_signal 0.0-3.9-40.9 -1 [77, 90] -1 850
1034957 0 487 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_488 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 488 1454610961893 motor_selective_stop_signal 0.0-3.10-0.10 -1 -1 1035623 feedback 488 poldrack-text 62 -7ce0474b-9095-4507-a01b-767445a1c93d_489 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 489 1454610963406 motor_selective_stop_signal 0.0-3.10-1.10 -1 none -1 500
+
1037136 0 prompt_fixation 489 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_490 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 490 1454610965264 motor_selective_stop_signal 0.0-3.10-2.10 -1 [77, 90] -1 850
1038993 0 490 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_491 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 491 1454610965771 motor_selective_stop_signal 0.0-3.10-3.10 -1 none -1 500
+
1039501 0 prompt_fixation 491 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_492 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 492 1454610967629 motor_selective_stop_signal 0.0-3.10-4.10 -1 [77, 90] -1 850
1041359 0 492 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_493 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 493 1454610968135 motor_selective_stop_signal 0.0-3.10-5.10 -1 none -1 500
+
1041865 0 prompt_fixation 493 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_494 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 494 1454610969995 motor_selective_stop_signal 0.0-3.10-6.10 -1 [77, 90] -1 850
1043724 0 494 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_495 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 495 1454610970503 motor_selective_stop_signal 0.0-3.10-7.10 -1 none -1 500
+
1044232 0 prompt_fixation 495 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_496 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 496 1454610972360 motor_selective_stop_signal 0.0-3.10-8.10 -1 [77, 90] -1 850
1046090 0 496 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_497 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 497 1454610972867 motor_selective_stop_signal 0.0-3.10-9.10 -1 none -1 500
+
1046596 0 prompt_fixation 497 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_498 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 498 1454610974726 motor_selective_stop_signal 0.0-3.10-10.10 -1 [77, 90] -1 850
1048455 0 498 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_499 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 499 1454610975233 motor_selective_stop_signal 0.0-3.10-11.10 -1 none -1 500
+
1048962 0 prompt_fixation 499 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_500 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 500 1454610977094 motor_selective_stop_signal 0.0-3.10-12.10 -1 [77, 90] -1 850
1050823 0 500 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_501 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 501 1454610977601 motor_selective_stop_signal 0.0-3.10-13.10 -1 none -1 500
+
1051330 0 prompt_fixation 501 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_502 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 502 1454610979458 motor_selective_stop_signal 0.0-3.10-14.10 -1 [77, 90] -1 850
1053187 0 502 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_503 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 503 1454610979966 motor_selective_stop_signal 0.0-3.10-15.10 -1 none -1 500
+
1053695 0 prompt_fixation 503 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_504 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 504 1454610981825 motor_selective_stop_signal 0.0-3.10-16.10 -1 [77, 90] -1 850
1055554 0 504 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_505 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 505 1454610982336 motor_selective_stop_signal 0.0-3.10-17.10 -1 none -1 500
+
1056065 0 prompt_fixation 505 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_506 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 506 1454610984193 motor_selective_stop_signal 0.0-3.10-18.10 -1 [77, 90] -1 850
1057922 0 506 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_507 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 507 1454610984700 motor_selective_stop_signal 0.0-3.10-19.10 -1 none -1 500
+
1058430 0 prompt_fixation 507 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_508 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 508 1454610986559 motor_selective_stop_signal 0.0-3.10-20.10 -1 [77, 90] -1 850
1060289 0 508 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_509 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 509 1454610987067 motor_selective_stop_signal 0.0-3.10-21.10 -1 none -1 500
+
1060796 0 prompt_fixation 509 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_510 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 510 1454610988928 motor_selective_stop_signal 0.0-3.10-22.10 -1 [77, 90] -1 850
1062657 0 510 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_511 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 511 1454610989435 motor_selective_stop_signal 0.0-3.10-23.10 -1 none -1 500
+
1063165 0 prompt_fixation 511 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_512 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 512 1454610991293 motor_selective_stop_signal 0.0-3.10-24.10 -1 [77, 90] -1 850
1065022 0 512 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_513 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 513 1454610991803 motor_selective_stop_signal 0.0-3.10-25.10 -1 none -1 500
+
1065533 0 prompt_fixation 513 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_514 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 514 1454610993661 motor_selective_stop_signal 0.0-3.10-26.10 -1 [77, 90] -1 850
1067390 0 514 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_515 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 515 1454610994168 motor_selective_stop_signal 0.0-3.10-27.10 -1 none -1 500
+
1067897 0 prompt_fixation 515 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_516 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 516 1454610996029 motor_selective_stop_signal 0.0-3.10-28.10 -1 [77, 90] -1 850
1069759 0 516 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_517 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 517 1454610996535 motor_selective_stop_signal 0.0-3.10-29.10 -1 none -1 500
+
1070265 0 prompt_fixation 517 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_518 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 518 1454610998396 motor_selective_stop_signal 0.0-3.10-30.10 -1 [77, 90] -1 850
1072126 0 518 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_519 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 519 1454610998903 motor_selective_stop_signal 0.0-3.10-31.10 -1 none -1 500
+
1072632 0 prompt_fixation 519 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_520 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 520 1454611000760 motor_selective_stop_signal 0.0-3.10-32.10 -1 [77, 90] -1 850
1074490 0 520 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_521 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 521 1454611001271 motor_selective_stop_signal 0.0-3.10-33.10 -1 none -1 500
+
1075000 0 prompt_fixation 521 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_522 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 522 1454611003128 motor_selective_stop_signal 0.0-3.10-34.10 -1 [77, 90] -1 850
1076858 0 522 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_523 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 523 1454611003636 motor_selective_stop_signal 0.0-3.10-35.10 -1 none -1 500
+
1077365 0 prompt_fixation 523 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_524 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 524 1454611005497 motor_selective_stop_signal 0.0-3.10-36.10 -1 [77, 90] -1 850
1079226 0 524 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_525 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 525 1454611006004 motor_selective_stop_signal 0.0-3.10-37.10 -1 none -1 500
+
1079733 0 prompt_fixation 525 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_526 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 526 1454611007864 motor_selective_stop_signal 0.0-3.10-38.10 -1 [77, 90] -1 850
1081593 0 526 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_527 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 527 1454611008370 motor_selective_stop_signal 0.0-3.10-39.10 -1 none -1 500
+
1082100 0 prompt_fixation 527 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_528 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 528 1454611010230 motor_selective_stop_signal 0.0-3.10-40.10 -1 [77, 90] -1 850
1083960 0 528 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_529 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 529 1454611021244 motor_selective_stop_signal 0.0-3.11-0.11 -1 -1 1094973 feedback 529 poldrack-text 62 -7ce0474b-9095-4507-a01b-767445a1c93d_530 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 530 1454611022760 motor_selective_stop_signal 0.0-3.11-1.11 -1 none -1 500
+
1096490 0 prompt_fixation 530 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_531 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 531 1454611024620 motor_selective_stop_signal 0.0-3.11-2.11 -1 [77, 90] -1 850
1098349 0 531 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_532 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 532 1454611025128 motor_selective_stop_signal 0.0-3.11-3.11 -1 none -1 500
+
1098857 0 prompt_fixation 532 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_533 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 533 1454611026986 motor_selective_stop_signal 0.0-3.11-4.11 -1 [77, 90] -1 850
1100715 0 533 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_534 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 534 1454611027492 motor_selective_stop_signal 0.0-3.11-5.11 -1 none -1 500
+
1101222 0 prompt_fixation 534 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_535 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 535 1454611029351 motor_selective_stop_signal 0.0-3.11-6.11 -1 [77, 90] -1 850
1103080 0 535 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_536 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 536 1454611029857 motor_selective_stop_signal 0.0-3.11-7.11 -1 none -1 500
+
1103586 0 prompt_fixation 536 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_537 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 537 1454611031717 motor_selective_stop_signal 0.0-3.11-8.11 -1 [77, 90] -1 850
1105446 0 537 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_538 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 538 1454611032225 motor_selective_stop_signal 0.0-3.11-9.11 -1 none -1 500
+
1105954 0 prompt_fixation 538 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_539 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 539 1454611034085 motor_selective_stop_signal 0.0-3.11-10.11 -1 [77, 90] -1 850
1107815 0 539 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_540 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 540 1454611034591 motor_selective_stop_signal 0.0-3.11-11.11 -1 none -1 500
+
1108321 0 prompt_fixation 540 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_541 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 541 1454611036452 motor_selective_stop_signal 0.0-3.11-12.11 -1 [77, 90] -1 850
1110181 0 541 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_542 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 542 1454611036959 motor_selective_stop_signal 0.0-3.11-13.11 -1 none -1 500
+
1110688 0 prompt_fixation 542 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_543 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 543 1454611038817 motor_selective_stop_signal 0.0-3.11-14.11 -1 [77, 90] -1 850
1112546 0 543 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_544 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 544 1454611039323 motor_selective_stop_signal 0.0-3.11-15.11 -1 none -1 500
+
1113053 0 prompt_fixation 544 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_545 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 545 1454611041184 motor_selective_stop_signal 0.0-3.11-16.11 -1 [77, 90] -1 850
1114914 0 545 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_546 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 546 1454611041693 motor_selective_stop_signal 0.0-3.11-17.11 -1 none -1 500
+
1115423 0 prompt_fixation 546 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_547 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 547 1454611043553 motor_selective_stop_signal 0.0-3.11-18.11 -1 [77, 90] -1 850
1117282 0 547 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_548 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 548 1454611044061 motor_selective_stop_signal 0.0-3.11-19.11 -1 none -1 500
+
1117790 0 prompt_fixation 548 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_549 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 549 1454611045923 motor_selective_stop_signal 0.0-3.11-20.11 -1 [77, 90] -1 850
1119652 0 549 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_550 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 550 1454611046431 motor_selective_stop_signal 0.0-3.11-21.11 -1 none -1 500
+
1120161 0 prompt_fixation 550 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_551 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 551 1454611048290 motor_selective_stop_signal 0.0-3.11-22.11 -1 [77, 90] -1 850
1122019 0 551 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_552 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 552 1454611048797 motor_selective_stop_signal 0.0-3.11-23.11 -1 none -1 500
+
1122526 0 prompt_fixation 552 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_553 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 553 1454611050655 motor_selective_stop_signal 0.0-3.11-24.11 -1 [77, 90] -1 850
1124384 0 553 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_554 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 554 1454611051163 motor_selective_stop_signal 0.0-3.11-25.11 -1 none -1 500
+
1124892 0 prompt_fixation 554 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_555 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 555 1454611053020 motor_selective_stop_signal 0.0-3.11-26.11 -1 [77, 90] -1 850
1126750 0 555 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_556 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 556 1454611053527 motor_selective_stop_signal 0.0-3.11-27.11 -1 none -1 500
+
1127256 0 prompt_fixation 556 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_557 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 557 1454611055386 motor_selective_stop_signal 0.0-3.11-28.11 -1 [77, 90] -1 850
1129116 0 557 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_558 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 558 1454611055894 motor_selective_stop_signal 0.0-3.11-29.11 -1 none -1 500
+
1129623 0 prompt_fixation 558 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_559 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 559 1454611057753 motor_selective_stop_signal 0.0-3.11-30.11 -1 [77, 90] -1 850
1131482 0 559 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_560 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 560 1454611058261 motor_selective_stop_signal 0.0-3.11-31.11 -1 none -1 500
+
1131990 0 prompt_fixation 560 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_561 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 561 1454611060120 motor_selective_stop_signal 0.0-3.11-32.11 -1 [77, 90] -1 850
1133849 0 561 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_562 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 562 1454611060628 motor_selective_stop_signal 0.0-3.11-33.11 -1 none -1 500
+
1134357 0 prompt_fixation 562 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_563 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 563 1454611062487 motor_selective_stop_signal 0.0-3.11-34.11 -1 [77, 90] -1 850
1136217 0 563 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_564 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 564 1454611062993 motor_selective_stop_signal 0.0-3.11-35.11 -1 none -1 500
+
1136722 0 prompt_fixation 564 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_565 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 565 1454611064854 motor_selective_stop_signal 0.0-3.11-36.11 -1 [77, 90] -1 850
1138584 0 565 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_566 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 566 1454611065361 motor_selective_stop_signal 0.0-3.11-37.11 -1 none -1 500
+
1139090 0 prompt_fixation 566 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_567 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 567 1454611067221 motor_selective_stop_signal 0.0-3.11-38.11 -1 [77, 90] -1 850
1140951 0 567 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_568 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 568 1454611067729 motor_selective_stop_signal 0.0-3.11-39.11 -1 none -1 500
+
1141459 0 prompt_fixation 568 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_569 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 569 1454611069588 motor_selective_stop_signal 0.0-3.11-40.11 -1 [77, 90] -1 850
1143317 0 569 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_570 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 570 1454611070246 motor_selective_stop_signal 0.0-3.12-0.12 -1 -1 1143975 feedback 570 poldrack-text 62 -7ce0474b-9095-4507-a01b-767445a1c93d_571 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 571 1454611071755 motor_selective_stop_signal 0.0-3.12-1.12 -1 none -1 500
+
1145485 0 prompt_fixation 571 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_572 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 572 1454611073612 motor_selective_stop_signal 0.0-3.12-2.12 -1 [77, 90] -1 850
1147341 0 572 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_573 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 573 1454611074120 motor_selective_stop_signal 0.0-3.12-3.12 -1 none -1 500
+
1147849 0 prompt_fixation 573 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_574 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 574 1454611075979 motor_selective_stop_signal 0.0-3.12-4.12 -1 [77, 90] -1 850
1149708 0 574 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_575 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 575 1454611076489 motor_selective_stop_signal 0.0-3.12-5.12 -1 none -1 500
+
1150219 0 prompt_fixation 575 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_576 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 576 1454611078346 motor_selective_stop_signal 0.0-3.12-6.12 -1 [77, 90] -1 850
1152076 0 576 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_577 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 577 1454611078854 motor_selective_stop_signal 0.0-3.12-7.12 -1 none -1 500
+
1152583 0 prompt_fixation 577 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_578 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 578 1454611080711 motor_selective_stop_signal 0.0-3.12-8.12 -1 [77, 90] -1 850
1154441 0 578 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_579 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 579 1454611081218 motor_selective_stop_signal 0.0-3.12-9.12 -1 none -1 500
+
1154947 0 prompt_fixation 579 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_580 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 580 1454611083077 motor_selective_stop_signal 0.0-3.12-10.12 -1 [77, 90] -1 850
1156807 0 580 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_581 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 581 1454611083589 motor_selective_stop_signal 0.0-3.12-11.12 -1 none -1 500
+
1157318 0 prompt_fixation 581 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_582 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 582 1454611085446 motor_selective_stop_signal 0.0-3.12-12.12 -1 [77, 90] -1 850
1159176 0 582 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_583 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 583 1454611085957 motor_selective_stop_signal 0.0-3.12-13.12 -1 none -1 500
+
1159686 0 prompt_fixation 583 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_584 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 584 1454611087813 motor_selective_stop_signal 0.0-3.12-14.12 -1 [77, 90] -1 850
1161543 0 584 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_585 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 585 1454611088319 motor_selective_stop_signal 0.0-3.12-15.12 -1 none -1 500
+
1162048 0 prompt_fixation 585 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_586 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 586 1454611090177 motor_selective_stop_signal 0.0-3.12-16.12 -1 [77, 90] -1 850
1163907 0 586 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_587 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 587 1454611090684 motor_selective_stop_signal 0.0-3.12-17.12 -1 none -1 500
+
1164414 0 prompt_fixation 587 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_588 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 588 1454611092542 motor_selective_stop_signal 0.0-3.12-18.12 -1 [77, 90] -1 850
1166271 0 588 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_589 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 589 1454611093050 motor_selective_stop_signal 0.0-3.12-19.12 -1 none -1 500
+
1166779 0 prompt_fixation 589 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_590 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 590 1454611094910 motor_selective_stop_signal 0.0-3.12-20.12 -1 [77, 90] -1 850
1168640 0 590 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_591 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 591 1454611095422 motor_selective_stop_signal 0.0-3.12-21.12 -1 none -1 500
+
1169151 0 prompt_fixation 591 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_592 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 592 1454611097282 motor_selective_stop_signal 0.0-3.12-22.12 -1 [77, 90] -1 850
1171011 0 592 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_593 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 593 1454611097789 motor_selective_stop_signal 0.0-3.12-23.12 -1 none -1 500
+
1171519 0 prompt_fixation 593 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_594 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 594 1454611099651 motor_selective_stop_signal 0.0-3.12-24.12 -1 [77, 90] -1 850
1173380 0 594 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_595 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 595 1454611100161 motor_selective_stop_signal 0.0-3.12-25.12 -1 none -1 500
+
1173890 0 prompt_fixation 595 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_596 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 596 1454611102019 motor_selective_stop_signal 0.0-3.12-26.12 -1 [77, 90] -1 850
1175748 0 596 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_597 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 597 1454611102530 motor_selective_stop_signal 0.0-3.12-27.12 -1 none -1 500
+
1176260 0 prompt_fixation 597 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_598 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 598 1454611104389 motor_selective_stop_signal 0.0-3.12-28.12 -1 [77, 90] -1 850
1178119 0 598 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_599 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 599 1454611104896 motor_selective_stop_signal 0.0-3.12-29.12 -1 none -1 500
+
1178626 0 prompt_fixation 599 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_600 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 600 1454611106756 motor_selective_stop_signal 0.0-3.12-30.12 -1 [77, 90] -1 850
1180485 0 600 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_601 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 601 1454611107262 motor_selective_stop_signal 0.0-3.12-31.12 -1 none -1 500
+
1180992 0 prompt_fixation 601 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_602 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 602 1454611109124 motor_selective_stop_signal 0.0-3.12-32.12 -1 [77, 90] -1 850
1182853 0 602 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_603 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 603 1454611109632 motor_selective_stop_signal 0.0-3.12-33.12 -1 none -1 500
+
1183361 0 prompt_fixation 603 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_604 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 604 1454611111492 motor_selective_stop_signal 0.0-3.12-34.12 -1 [77, 90] -1 850
1185221 0 604 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_605 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 605 1454611112001 motor_selective_stop_signal 0.0-3.12-35.12 -1 none -1 500
+
1185731 0 prompt_fixation 605 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_606 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 606 1454611113860 motor_selective_stop_signal 0.0-3.12-36.12 -1 [77, 90] -1 850
1187590 0 606 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_607 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 607 1454611114369 motor_selective_stop_signal 0.0-3.12-37.12 -1 none -1 500
+
1188098 0 prompt_fixation 607 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_608 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 608 1454611116226 motor_selective_stop_signal 0.0-3.12-38.12 -1 [77, 90] -1 850
1189956 0 608 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_609 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 609 1454611116735 motor_selective_stop_signal 0.0-3.12-39.12 -1 none -1 500
+
1190465 0 prompt_fixation 609 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_610 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 610 1454611118594 motor_selective_stop_signal 0.0-3.12-40.12 -1 [77, 90] -1 850
1192323 0 610 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_611 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 611 1454611129608 motor_selective_stop_signal 0.0-3.13-0.13 -1 -1 1203338 feedback 611 poldrack-text 62 -7ce0474b-9095-4507-a01b-767445a1c93d_612 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 612 1454611131118 motor_selective_stop_signal 0.0-3.13-1.13 -1 none -1 500
+
1204848 0 prompt_fixation 612 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_613 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 613 1454611132981 motor_selective_stop_signal 0.0-3.13-2.13 -1 [77, 90] -1 850
1206711 0 613 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_614 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 614 1454611133489 motor_selective_stop_signal 0.0-3.13-3.13 -1 none -1 500
+
1207218 0 prompt_fixation 614 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_615 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 615 1454611135347 motor_selective_stop_signal 0.0-3.13-4.13 -1 [77, 90] -1 850
1209076 0 615 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_616 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 616 1454611135854 motor_selective_stop_signal 0.0-3.13-5.13 -1 none -1 500
+
1209583 0 prompt_fixation 616 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_617 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 617 1454611137712 motor_selective_stop_signal 0.0-3.13-6.13 -1 [77, 90] -1 850
1211441 0 617 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_618 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 618 1454611138218 motor_selective_stop_signal 0.0-3.13-7.13 -1 none -1 500
+
1211947 0 prompt_fixation 618 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_619 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 619 1454611140075 motor_selective_stop_signal 0.0-3.13-8.13 -1 [77, 90] -1 850
1213804 0 619 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_620 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 620 1454611140582 motor_selective_stop_signal 0.0-3.13-9.13 -1 none -1 500
+
1214312 0 prompt_fixation 620 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_621 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 621 1454611142440 motor_selective_stop_signal 0.0-3.13-10.13 -1 [77, 90] -1 850
1216169 0 621 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_622 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 622 1454611142949 motor_selective_stop_signal 0.0-3.13-11.13 -1 none -1 500
+
1216679 0 prompt_fixation 622 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_623 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 623 1454611144812 motor_selective_stop_signal 0.0-3.13-12.13 -1 [77, 90] -1 850
1218541 0 623 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_624 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 624 1454611145319 motor_selective_stop_signal 0.0-3.13-13.13 -1 none -1 500
+
1219049 0 prompt_fixation 624 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_625 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 625 1454611147180 motor_selective_stop_signal 0.0-3.13-14.13 -1 [77, 90] -1 850
1220909 0 625 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_626 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 626 1454611147688 motor_selective_stop_signal 0.0-3.13-15.13 -1 none -1 500
+
1221418 0 prompt_fixation 626 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_627 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 627 1454611149545 motor_selective_stop_signal 0.0-3.13-16.13 -1 [77, 90] -1 850
1223275 0 627 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_628 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 628 1454611150054 motor_selective_stop_signal 0.0-3.13-17.13 -1 none -1 500
+
1223783 0 prompt_fixation 628 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_629 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 629 1454611151916 motor_selective_stop_signal 0.0-3.13-18.13 -1 [77, 90] -1 850
1225646 0 629 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_630 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 630 1454611152423 motor_selective_stop_signal 0.0-3.13-19.13 -1 none -1 500
+
1226152 0 prompt_fixation 630 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_631 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 631 1454611154285 motor_selective_stop_signal 0.0-3.13-20.13 -1 [77, 90] -1 850
1228014 0 631 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_632 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 632 1454611154793 motor_selective_stop_signal 0.0-3.13-21.13 -1 none -1 500
+
1228523 0 prompt_fixation 632 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_633 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 633 1454611156655 motor_selective_stop_signal 0.0-3.13-22.13 -1 [77, 90] -1 850
1230384 0 633 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_634 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 634 1454611157162 motor_selective_stop_signal 0.0-3.13-23.13 -1 none -1 500
+
1230892 0 prompt_fixation 634 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_635 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 635 1454611159022 motor_selective_stop_signal 0.0-3.13-24.13 -1 [77, 90] -1 850
1232751 0 635 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_636 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 636 1454611159532 motor_selective_stop_signal 0.0-3.13-25.13 -1 none -1 500
+
1233261 0 prompt_fixation 636 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_637 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 637 1454611161396 motor_selective_stop_signal 0.0-3.13-26.13 -1 [77, 90] -1 850
1235126 0 637 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_638 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 638 1454611161905 motor_selective_stop_signal 0.0-3.13-27.13 -1 none -1 500
+
1235634 0 prompt_fixation 638 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_639 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 90 639 1454611163765 motor_selective_stop_signal 0.0-3.13-28.13 -1 [77, 90] -1 850
1237494 0 639 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_640 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 640 1454611164273 motor_selective_stop_signal 0.0-3.13-29.13 -1 none -1 500
+
1238003 0 prompt_fixation 640 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_641 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 641 1454611166131 motor_selective_stop_signal 0.0-3.13-30.13 -1 [77, 90] -1 850
1239861 0 641 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_642 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 642 1454611166644 motor_selective_stop_signal 0.0-3.13-31.13 -1 none -1 500
+
1240373 0 prompt_fixation 642 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_643 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 643 1454611168506 motor_selective_stop_signal 0.0-3.13-32.13 -1 [77, 90] -1 850
1242236 0 643 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_644 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 644 1454611169016 motor_selective_stop_signal 0.0-3.13-33.13 -1 none -1 500
+
1242745 0 prompt_fixation 644 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_645 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 645 1454611170875 motor_selective_stop_signal 0.0-3.13-34.13 -1 [77, 90] -1 850
1244605 0 645 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_646 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 646 1454611171384 motor_selective_stop_signal 0.0-3.13-35.13 -1 none -1 500
+
1245114 0 prompt_fixation 646 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_647 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 647 1454611173243 motor_selective_stop_signal 0.0-3.13-36.13 -1 [77, 90] -1 850
1246973 0 647 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_648 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 648 1454611173757 motor_selective_stop_signal 0.0-3.13-37.13 -1 none -1 500
+
1247486 0 prompt_fixation 648 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_649 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 649 1454611175617 motor_selective_stop_signal 0.0-3.13-38.13 -1 [77, 90] -1 850
1249347 0 649 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_650 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 650 1454611176127 motor_selective_stop_signal 0.0-3.13-39.13 -1 none -1 500
+
1249856 0 prompt_fixation 650 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_651 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 651 1454611177988 motor_selective_stop_signal 0.0-3.13-40.13 -1 [77, 90] -1 850
1251718 0 651 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_652 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 652 1454611178612 motor_selective_stop_signal 0.0-3.14-0.14 -1 -1 1252341 feedback 652 poldrack-text 62 -7ce0474b-9095-4507-a01b-767445a1c93d_653 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 653 1454611180125 motor_selective_stop_signal 0.0-3.14-1.14 -1 none -1 500
+
1253855 0 prompt_fixation 653 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_654 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 654 1454611181986 motor_selective_stop_signal 0.0-3.14-2.14 -1 [77, 90] -1 850
1255715 0 654 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_655 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 655 1454611182497 motor_selective_stop_signal 0.0-3.14-3.14 -1 none -1 500
+
1256226 0 prompt_fixation 655 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_656 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 656 1454611184359 motor_selective_stop_signal 0.0-3.14-4.14 -1 [77, 90] -1 850
1258089 0 656 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_657 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 657 1454611184870 motor_selective_stop_signal 0.0-3.14-5.14 -1 none -1 500
+
1258599 0 prompt_fixation 657 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_658 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 658 1454611186731 motor_selective_stop_signal 0.0-3.14-6.14 -1 [77, 90] -1 850
1260461 0 658 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_659 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 659 1454611187243 motor_selective_stop_signal 0.0-3.14-7.14 -1 none -1 500
+
1260972 0 prompt_fixation 659 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_660 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 77 660 1454611189106 motor_selective_stop_signal 0.0-3.14-8.14 -1 [77, 90] -1 850
1262836 0 660 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_661 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 661 1454611189619 motor_selective_stop_signal 0.0-3.14-9.14 -1 none -1 500
+
1263349 0 prompt_fixation 661 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_662 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b practice 90 662 1454611190941 motor_selective_stop_signal 0.0-3.14-10.14 1264671 662 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_663 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 663 1454611191452 motor_selective_stop_signal 0.0-3.14-11.14 -1 none -1 500
+
1265182 0 prompt_fixation 663 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_664 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 664 1454611191479 motor_selective_stop_signal 0.0-3.14-12.14 -1 [77, 90] -1 850
1265208 0 664 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_665 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 665 1454611191989 motor_selective_stop_signal 0.0-3.14-13.14 -1 none -1 500
+
1265718 0 prompt_fixation 665 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_666 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b practice 90 666 1454611192539 motor_selective_stop_signal 0.0-3.14-14.14 1266269 666 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_667 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 667 1454611193048 motor_selective_stop_signal 0.0-3.14-15.14 -1 none -1 500
+
1266777 0 prompt_fixation 667 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_668 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 practice 90 668 1454611193314 motor_selective_stop_signal 0.0-3.14-16.14 -1 [77, 90] -1 850
1267043 0 668 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_669 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 669 1454611193827 motor_selective_stop_signal 0.0-3.14-17.14 -1 none -1 500
+
1267557 0 prompt_fixation 669 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_670 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
stop 1850 practice 77 670 1454611193847 motor_selective_stop_signal 0.0-3.14-18.14 -1 [77, 90] -1 850
1267577 0 670 stop-signal 62 -7ce0474b-9095-4507-a01b-767445a1c93d_671 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 500 671 1454611194356 motor_selective_stop_signal 0.0-3.14-19.14 -1 none -1 500
+
1268086 0 prompt_fixation 671 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_672 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 672 1454611194907 motor_selective_stop_signal 0.0-3.14-19.14 -1 [77, 90] -1 850
1268637 0 prompt_fixation 672 poldrack-single-stim 62 -7ce0474b-9095-4507-a01b-767445a1c93d_673 7ce0474b-9095-4507-a01b-767445a1c93d Mac OS X,10.10.5 Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False motor_selective_stop_signal Motor-Selective-Stop-Signal http://www.jneurosci.org/content/27/14/3743.short trm_4cacf3fbc503b 250 250
go 1850 673 1454611195687 motor_selective_stop_signal 0.0-3.14-19.14 -1 [77, 90] -1 850
1269416 0 prompt_fixation 673 poldrack-single-stim 62 -85701673-ff0d-404e-97f6-de05cc2edf63_0 85701673-ff0d-404e-97f6-de05cc2edf63 Linux, Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False time_perspective ZTPI: Zimbardo Time Perspective Inventory http://psycnet.apa.org/journals/psp/77/6/1271.pdf trm_56a91e92eab46 0 1454451551976 time_perspective 0.0-0.0 13 1282 1285 0 text 19 -85701673-ff0d-404e-97f6-de05cc2edf63_1 85701673-ff0d-404e-97f6-de05cc2edf63 Linux, Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False time_perspective ZTPI: Zimbardo Time Perspective Inventory http://psycnet.apa.org/journals/psp/77/6/1271.pdf trm_56a91e92eab46 1 1454451560006 time_perspective 0.0-1.0 9310 1 poldrack-instructions 19 -85701673-ff0d-404e-97f6-de05cc2edf63_2 85701673-ff0d-404e-97f6-de05cc2edf63 Linux, Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True 2 1454451567364 0.0-2.0 14384 16672 2 poldrack-survey-multi-choice 19 "[{""page_index"":0,""viewing_time"":14382}]" -85701673-ff0d-404e-97f6-de05cc2edf63_3 85701673-ff0d-404e-97f6-de05cc2edf63 Linux, Chrome,48.0.2564 Internal Test Battery ian ianeisenberg90@gmail.com True False False time_perspective ZTPI: Zimbardo Time Perspective Inventory http://psycnet.apa.org/journals/psp/77/6/1271.pdf trm_56a91e92eab46 3 1454451569509 time_perspective 0.0-3.0 13 1143 18818 3 text 19 diff --git a/expfactory/testing/data/results/stroop_results.csv b/expfactory/testing/data/results/stroop_results.csv deleted file mode 100644 index 3412c30..0000000 --- a/expfactory/testing/data/results/stroop_results.csv +++ /dev/null @@ -1,249 +0,0 @@ -"rt","key_press","exp_id","trial_id","trial_type","trial_index","time_elapsed","internal_node_id","view_history","stimulus","possible_responses","stim_duration","block_duration","timing_post_trial","exp_stage","correct","correct_response","feedback_duration","condition" -"2065","13","stroop","welcome","poldrack-text","0","2069","0.0-0.0","","","","","","","","","","","" -"915","13","stroop","instruction","poldrack-text","1","2986","0.0-1.0-0.0","","","","","","","","","","","" -"7840","","stroop","instruction","poldrack-instructions","2","10827","0.0-1.0-1.0","[{""page_index"":0,""viewing_time"":7838}]","","","","","","","","","","" -"423","13","stroop","practice_intro","poldrack-text","3","12251","0.0-2.0","","","","","","","","","","","" -"-1","-1","stroop","fixation","poldrack-single-stim","4","13756","0.0-3.0","","
+
","none","500","500","500","practice","","","","" -"456","82","stroop","stim","poldrack-categorize","5","15217","0.0-4.0","","
RED
","66,71,82","456","456","250","practice","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","6","15972","0.0-5.0","","
+
","none","500","500","500","practice","","","","" -"396","66","stroop","stim","poldrack-categorize","7","17372","0.0-6.0","","
RED
","66,71,82","396","396","250","practice","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","8","18123","0.0-7.0","","
+
","none","500","500","500","practice","","","","" -"348","66","stroop","stim","poldrack-categorize","9","19474","0.0-8.0","","
BLUE
","66,71,82","348","348","250","practice","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","10","20226","0.0-9.0","","
+
","none","500","500","500","practice","","","","" -"475","71","stroop","stim","poldrack-categorize","11","21704","0.0-10.0","","
RED
","66,71,82","475","475","250","practice","false","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","12","22455","0.0-11.0","","
+
","none","500","500","500","practice","","","","" -"442","82","stroop","stim","poldrack-categorize","13","23902","0.0-12.0","","
RED
","66,71,82","442","442","250","practice","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","14","24656","0.0-13.0","","
+
","none","500","500","500","practice","","","","" -"381","66","stroop","stim","poldrack-categorize","15","26040","0.0-14.0","","
BLUE
","66,71,82","381","381","250","practice","false","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","16","26793","0.0-15.0","","
+
","none","500","500","500","practice","","","","" -"496","82","stroop","stim","poldrack-categorize","17","28293","0.0-16.0","","
RED
","66,71,82","496","496","250","practice","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","18","29045","0.0-17.0","","
+
","none","500","500","500","practice","","","","" -"372","66","stroop","stim","poldrack-categorize","19","30420","0.0-18.0","","
BLUE
","66,71,82","372","372","250","practice","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","20","31172","0.0-19.0","","
+
","none","500","500","500","practice","","","","" -"401","71","stroop","stim","poldrack-categorize","21","32575","0.0-20.0","","
GREEN
","66,71,82","401","401","250","practice","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","22","33327","0.0-21.0","","
+
","none","500","500","500","practice","","","","" -"332","71","stroop","stim","poldrack-categorize","23","34663","0.0-22.0","","
RED
","66,71,82","332","332","250","practice","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","24","35415","0.0-23.0","","
+
","none","500","500","500","practice","","","","" -"353","66","stroop","stim","poldrack-categorize","25","36771","0.0-24.0","","
RED
","66,71,82","353","353","250","practice","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","26","37522","0.0-25.0","","
+
","none","500","500","500","practice","","","","" -"366","82","stroop","stim","poldrack-categorize","27","38891","0.0-26.0","","
BLUE
","66,71,82","366","366","250","practice","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","28","39643","0.0-27.0","","
+
","none","500","500","500","practice","","","","" -"329","66","stroop","stim","poldrack-categorize","29","40976","0.0-28.0","","
BLUE
","66,71,82","329","329","250","practice","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","30","41728","0.0-29.0","","
+
","none","500","500","500","practice","","","","" -"409","82","stroop","stim","poldrack-categorize","31","43139","0.0-30.0","","
GREEN
","66,71,82","409","409","250","practice","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","32","43890","0.0-31.0","","
+
","none","500","500","500","practice","","","","" -"413","71","stroop","stim","poldrack-categorize","33","45306","0.0-32.0","","
BLUE
","66,71,82","413","413","250","practice","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","34","46057","0.0-33.0","","
+
","none","500","500","500","practice","","","","" -"466","71","stroop","stim","poldrack-categorize","35","47525","0.0-34.0","","
GREEN
","66,71,82","466","466","250","practice","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","36","48277","0.0-35.0","","
+
","none","500","500","500","practice","","","","" -"434","66","stroop","stim","poldrack-categorize","37","49715","0.0-36.0","","
GREEN
","66,71,82","434","434","250","practice","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","38","50466","0.0-37.0","","
+
","none","500","500","500","practice","","","","" -"356","71","stroop","stim","poldrack-categorize","39","51824","0.0-38.0","","
GREEN
","66,71,82","356","356","250","practice","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","40","52576","0.0-39.0","","
+
","none","500","500","500","practice","","","","" -"553","71","stroop","stim","poldrack-categorize","41","54132","0.0-40.0","","
RED
","66,71,82","553","553","250","practice","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","42","54883","0.0-41.0","","
+
","none","500","500","500","practice","","","","" -"410","66","stroop","stim","poldrack-categorize","43","56297","0.0-42.0","","
BLUE
","66,71,82","410","410","250","practice","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","44","57049","0.0-43.0","","
+
","none","500","500","500","practice","","","","" -"512","71","stroop","stim","poldrack-categorize","45","58565","0.0-44.0","","
GREEN
","66,71,82","512","512","250","practice","false","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","46","59317","0.0-45.0","","
+
","none","500","500","500","practice","","","","" -"570","66","stroop","stim","poldrack-categorize","47","60890","0.0-46.0","","
BLUE
","66,71,82","570","570","250","practice","false","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","48","61642","0.0-47.0","","
+
","none","500","500","500","practice","","","","" -"415","71","stroop","stim","poldrack-categorize","49","63063","0.0-48.0","","
GREEN
","66,71,82","415","415","250","practice","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","50","63815","0.0-49.0","","
+
","none","500","500","500","practice","","","","" -"591","82","stroop","stim","poldrack-categorize","51","65411","0.0-50.0","","
GREEN
","66,71,82","591","591","250","practice","true","82","500","incongruent" -"3562","70","stroop","attention_check","attention-check","52","69227","0.0-51.0-0.0","","

Please read the following paragraph:

I first met Dean not long after my wife and I split up. I had just gotten over a serious illness that I won’t bother to talk about, except that it had something to do with the miserably weary split-up and my feeling that everything was dead. With the coming of Dean Moriarty began the part of my life you could call my life on the road. Before that I’d often dreamed of going West to see the country, always vaguely planning and never taking off. If you are reading this paragraph, press the F key instead of the M key. Dean is the perfect guy for the road because he actually was born on the road, when his parents were passing through Salt Lake City in 1926, in a jalopy, on their way to Los Angeles. First reports of him came to me through Chad King, who’d shown me a few letters from him written in a New Mexico reform school. I was tremendously interested in the letters because they so naively and sweetly asked Chad to teach him all about Nietzsche and all the wonderful intellectual things that Chad knew. At one point Carlo and I talked about the letters and wondered if we would ever meet the strange Dean Moriarty. This is all far back, when Dean was not the way he is today, when he was a young jailkid shrouded in mystery. Then news came that Dean was out of reform school and was coming to New York for the first time; also there was talk that he had just married a girl called Marylou. --On the Road (Jack Kerouac)

Press the ""M"" key.","","3562","3562","200","","true","70","","" -"2091","13","stroop","test_intro","poldrack-text","53","71520","0.0-52.0","","","","","","","","","","","" -"-1","-1","stroop","fixation","poldrack-single-stim","54","73022","0.0-53.0","","

+
","none","500","500","500","test","","","","" -"430","82","stroop","stim","poldrack-categorize","55","74456","0.0-54.0","","
GREEN
","66,71,82","430","430","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","56","75208","0.0-55.0","","
+
","none","500","500","500","test","","","","" -"346","82","stroop","stim","poldrack-categorize","57","76558","0.0-56.0","","
RED
","66,71,82","346","346","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","58","77310","0.0-57.0","","
+
","none","500","500","500","test","","","","" -"421","66","stroop","stim","poldrack-categorize","59","78737","0.0-58.0","","
BLUE
","66,71,82","421","421","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","60","79488","0.0-59.0","","
+
","none","500","500","500","test","","","","" -"381","66","stroop","stim","poldrack-categorize","61","80872","0.0-60.0","","
RED
","66,71,82","381","381","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","62","81623","0.0-61.0","","
+
","none","500","500","500","test","","","","" -"330","71","stroop","stim","poldrack-categorize","63","82956","0.0-62.0","","
BLUE
","66,71,82","330","330","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","64","83707","0.0-63.0","","
+
","none","500","500","500","test","","","","" -"395","71","stroop","stim","poldrack-categorize","65","85106","0.0-64.0","","
GREEN
","66,71,82","395","395","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","66","85857","0.0-65.0","","
+
","none","500","500","500","test","","","","" -"419","66","stroop","stim","poldrack-categorize","67","87280","0.0-66.0","","
BLUE
","66,71,82","419","419","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","68","88032","0.0-67.0","","
+
","none","500","500","500","test","","","","" -"323","82","stroop","stim","poldrack-categorize","69","89361","0.0-68.0","","
RED
","66,71,82","323","323","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","70","90112","0.0-69.0","","
+
","none","500","500","500","test","","","","" -"400","71","stroop","stim","poldrack-categorize","71","91515","0.0-70.0","","
GREEN
","66,71,82","400","400","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","72","92266","0.0-71.0","","
+
","none","500","500","500","test","","","","" -"419","71","stroop","stim","poldrack-categorize","73","93689","0.0-72.0","","
GREEN
","66,71,82","419","419","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","74","94440","0.0-73.0","","
+
","none","500","500","500","test","","","","" -"381","82","stroop","stim","poldrack-categorize","75","95824","0.0-74.0","","
GREEN
","66,71,82","381","381","250","test","false","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","76","96576","0.0-75.0","","
+
","none","500","500","500","test","","","","" -"513","82","stroop","stim","poldrack-categorize","77","98091","0.0-76.0","","
GREEN
","66,71,82","513","513","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","78","98842","0.0-77.0","","
+
","none","500","500","500","test","","","","" -"554","71","stroop","stim","poldrack-categorize","79","100399","0.0-78.0","","
RED
","66,71,82","554","554","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","80","101151","0.0-79.0","","
+
","none","500","500","500","test","","","","" -"506","82","stroop","stim","poldrack-categorize","81","102660","0.0-80.0","","
RED
","66,71,82","506","506","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","82","103411","0.0-81.0","","
+
","none","500","500","500","test","","","","" -"395","82","stroop","stim","poldrack-categorize","83","104811","0.0-82.0","","
RED
","66,71,82","395","395","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","84","105563","0.0-83.0","","
+
","none","500","500","500","test","","","","" -"401","82","stroop","stim","poldrack-categorize","85","106967","0.0-84.0","","
GREEN
","66,71,82","401","401","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","86","107719","0.0-85.0","","
+
","none","500","500","500","test","","","","" -"420","82","stroop","stim","poldrack-categorize","87","109143","0.0-86.0","","
RED
","66,71,82","420","420","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","88","109894","0.0-87.0","","
+
","none","500","500","500","test","","","","" -"463","71","stroop","stim","poldrack-categorize","89","111362","0.0-88.0","","
GREEN
","66,71,82","463","463","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","90","112113","0.0-89.0","","
+
","none","500","500","500","test","","","","" -"498","82","stroop","stim","poldrack-categorize","91","113614","0.0-90.0","","
RED
","66,71,82","498","498","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","92","114366","0.0-91.0","","
+
","none","500","500","500","test","","","","" -"474","71","stroop","stim","poldrack-categorize","93","115843","0.0-92.0","","
RED
","66,71,82","474","474","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","94","116594","0.0-93.0","","
+
","none","500","500","500","test","","","","" -"411","82","stroop","stim","poldrack-categorize","95","118011","0.0-94.0","","
GREEN
","66,71,82","411","411","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","96","118763","0.0-95.0","","
+
","none","500","500","500","test","","","","" -"383","71","stroop","stim","poldrack-categorize","97","120150","0.0-96.0","","
GREEN
","66,71,82","383","383","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","98","120902","0.0-97.0","","
+
","none","500","500","500","test","","","","" -"362","66","stroop","stim","poldrack-categorize","99","122270","0.0-98.0","","
RED
","66,71,82","362","362","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","100","123021","0.0-99.0","","
+
","none","500","500","500","test","","","","" -"409","66","stroop","stim","poldrack-categorize","101","124433","0.0-100.0","","
GREEN
","66,71,82","409","409","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","102","125185","0.0-101.0","","
+
","none","500","500","500","test","","","","" -"544","71","stroop","stim","poldrack-categorize","103","126733","0.0-102.0","","
RED
","66,71,82","544","544","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","104","127484","0.0-103.0","","
+
","none","500","500","500","test","","","","" -"507","66","stroop","stim","poldrack-categorize","105","128995","0.0-104.0","","
RED
","66,71,82","507","507","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","106","129746","0.0-105.0","","
+
","none","500","500","500","test","","","","" -"372","82","stroop","stim","poldrack-categorize","107","131122","0.0-106.0","","
RED
","66,71,82","372","372","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","108","131874","0.0-107.0","","
+
","none","500","500","500","test","","","","" -"391","82","stroop","stim","poldrack-categorize","109","133269","0.0-108.0","","
BLUE
","66,71,82","391","391","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","110","134020","0.0-109.0","","
+
","none","500","500","500","test","","","","" -"394","82","stroop","stim","poldrack-categorize","111","135418","0.0-110.0","","
BLUE
","66,71,82","394","394","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","112","136169","0.0-111.0","","
+
","none","500","500","500","test","","","","" -"403","66","stroop","stim","poldrack-categorize","113","137575","0.0-112.0","","
BLUE
","66,71,82","403","403","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","114","138328","0.0-113.0","","
+
","none","500","500","500","test","","","","" -"377","71","stroop","stim","poldrack-categorize","115","139710","0.0-114.0","","
GREEN
","66,71,82","377","377","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","116","140462","0.0-115.0","","
+
","none","500","500","500","test","","","","" -"357","82","stroop","stim","poldrack-categorize","117","141826","0.0-116.0","","
BLUE
","66,71,82","357","357","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","118","142578","0.0-117.0","","
+
","none","500","500","500","test","","","","" -"371","82","stroop","stim","poldrack-categorize","119","143953","0.0-118.0","","
GREEN
","66,71,82","371","371","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","120","144706","0.0-119.0","","
+
","none","500","500","500","test","","","","" -"374","82","stroop","stim","poldrack-categorize","121","146086","0.0-120.0","","
BLUE
","66,71,82","374","374","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","122","146838","0.0-121.0","","
+
","none","500","500","500","test","","","","" -"379","71","stroop","stim","poldrack-categorize","123","148225","0.0-122.0","","
BLUE
","66,71,82","379","379","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","124","148977","0.0-123.0","","
+
","none","500","500","500","test","","","","" -"601","66","stroop","stim","poldrack-categorize","125","150582","0.0-124.0","","
GREEN
","66,71,82","601","601","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","126","151333","0.0-125.0","","
+
","none","500","500","500","test","","","","" -"394","71","stroop","stim","poldrack-categorize","127","152731","0.0-126.0","","
GREEN
","66,71,82","394","394","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","128","153482","0.0-127.0","","
+
","none","500","500","500","test","","","","" -"442","66","stroop","stim","poldrack-categorize","129","154929","0.0-128.0","","
BLUE
","66,71,82","442","442","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","130","155681","0.0-129.0","","
+
","none","500","500","500","test","","","","" -"432","82","stroop","stim","poldrack-categorize","131","157116","0.0-130.0","","
RED
","66,71,82","432","432","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","132","157868","0.0-131.0","","
+
","none","500","500","500","test","","","","" -"497","66","stroop","stim","poldrack-categorize","133","159369","0.0-132.0","","
BLUE
","66,71,82","497","497","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","134","160121","0.0-133.0","","
+
","none","500","500","500","test","","","","" -"414","66","stroop","stim","poldrack-categorize","135","161543","0.0-134.0","","
GREEN
","66,71,82","414","414","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","136","162294","0.0-135.0","","
+
","none","500","500","500","test","","","","" -"402","66","stroop","stim","poldrack-categorize","137","163699","0.0-136.0","","
BLUE
","66,71,82","402","402","250","test","false","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","138","164451","0.0-137.0","","
+
","none","500","500","500","test","","","","" -"481","71","stroop","stim","poldrack-categorize","139","165935","0.0-138.0","","
RED
","66,71,82","481","481","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","140","166687","0.0-139.0","","
+
","none","500","500","500","test","","","","" -"410","82","stroop","stim","poldrack-categorize","141","168101","0.0-140.0","","
RED
","66,71,82","410","410","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","142","168853","0.0-141.0","","
+
","none","500","500","500","test","","","","" -"454","66","stroop","stim","poldrack-categorize","143","170314","0.0-142.0","","
BLUE
","66,71,82","454","454","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","144","171067","0.0-143.0","","
+
","none","500","500","500","test","","","","" -"485","71","stroop","stim","poldrack-categorize","145","172560","0.0-144.0","","
RED
","66,71,82","485","485","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","146","173312","0.0-145.0","","
+
","none","500","500","500","test","","","","" -"498","66","stroop","stim","poldrack-categorize","147","174819","0.0-146.0","","
BLUE
","66,71,82","498","498","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","148","175570","0.0-147.0","","
+
","none","500","500","500","test","","","","" -"512","71","stroop","stim","poldrack-categorize","149","177087","0.0-148.0","","
BLUE
","66,71,82","512","512","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","150","177839","0.0-149.0","","
+
","none","500","500","500","test","","","","" -"531","82","stroop","stim","poldrack-categorize","151","179379","0.0-150.0","","
BLUE
","66,71,82","531","531","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","152","180131","0.0-151.0","","
+
","none","500","500","500","test","","","","" -"520","66","stroop","stim","poldrack-categorize","153","181655","0.0-152.0","","
BLUE
","66,71,82","520","520","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","154","182406","0.0-153.0","","
+
","none","500","500","500","test","","","","" -"410","71","stroop","stim","poldrack-categorize","155","183820","0.0-154.0","","
GREEN
","66,71,82","410","410","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","156","184571","0.0-155.0","","
+
","none","500","500","500","test","","","","" -"377","82","stroop","stim","poldrack-categorize","157","185955","0.0-156.0","","
RED
","66,71,82","377","377","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","158","186707","0.0-157.0","","
+
","none","500","500","500","test","","","","" -"446","71","stroop","stim","poldrack-categorize","159","188158","0.0-158.0","","
GREEN
","66,71,82","446","446","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","160","188910","0.0-159.0","","
+
","none","500","500","500","test","","","","" -"449","71","stroop","stim","poldrack-categorize","161","190363","0.0-160.0","","
GREEN
","66,71,82","449","449","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","162","191114","0.0-161.0","","
+
","none","500","500","500","test","","","","" -"649","66","stroop","stim","poldrack-categorize","163","192768","0.0-162.0","","
BLUE
","66,71,82","649","649","250","test","false","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","164","193520","0.0-163.0","","
+
","none","500","500","500","test","","","","" -"491","66","stroop","stim","poldrack-categorize","165","195018","0.0-164.0","","
BLUE
","66,71,82","491","491","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","166","195769","0.0-165.0","","
+
","none","500","500","500","test","","","","" -"574","71","stroop","stim","poldrack-categorize","167","197350","0.0-166.0","","
BLUE
","66,71,82","574","574","250","test","false","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","168","198101","0.0-167.0","","
+
","none","500","500","500","test","","","","" -"456","66","stroop","stim","poldrack-categorize","169","199562","0.0-168.0","","
BLUE
","66,71,82","456","456","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","170","200315","0.0-169.0","","
+
","none","500","500","500","test","","","","" -"337","82","stroop","stim","poldrack-categorize","171","201656","0.0-170.0","","
RED
","66,71,82","337","337","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","172","202407","0.0-171.0","","
+
","none","500","500","500","test","","","","" -"425","71","stroop","stim","poldrack-categorize","173","203841","0.0-172.0","","
GREEN
","66,71,82","425","425","250","test","false","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","174","204593","0.0-173.0","","
+
","none","500","500","500","test","","","","" -"469","71","stroop","stim","poldrack-categorize","175","206068","0.0-174.0","","
BLUE
","66,71,82","469","469","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","176","206819","0.0-175.0","","
+
","none","500","500","500","test","","","","" -"502","71","stroop","stim","poldrack-categorize","177","208326","0.0-176.0","","
GREEN
","66,71,82","502","502","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","178","209078","0.0-177.0","","
+
","none","500","500","500","test","","","","" -"628","66","stroop","stim","poldrack-categorize","179","210716","0.0-178.0","","
BLUE
","66,71,82","628","628","250","test","false","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","180","211467","0.0-179.0","","
+
","none","500","500","500","test","","","","" -"502","66","stroop","stim","poldrack-categorize","181","212974","0.0-180.0","","
RED
","66,71,82","502","502","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","182","213725","0.0-181.0","","
+
","none","500","500","500","test","","","","" -"545","71","stroop","stim","poldrack-categorize","183","215274","0.0-182.0","","
BLUE
","66,71,82","545","545","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","184","216027","0.0-183.0","","
+
","none","500","500","500","test","","","","" -"530","66","stroop","stim","poldrack-categorize","185","217567","0.0-184.0","","
RED
","66,71,82","530","530","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","186","218318","0.0-185.0","","
+
","none","500","500","500","test","","","","" -"479","66","stroop","stim","poldrack-categorize","187","219802","0.0-186.0","","
BLUE
","66,71,82","479","479","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","188","220554","0.0-187.0","","
+
","none","500","500","500","test","","","","" -"536","71","stroop","stim","poldrack-categorize","189","222094","0.0-188.0","","
RED
","66,71,82","536","536","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","190","222846","0.0-189.0","","
+
","none","500","500","500","test","","","","" -"452","71","stroop","stim","poldrack-categorize","191","224307","0.0-190.0","","
GREEN
","66,71,82","452","452","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","192","225058","0.0-191.0","","
+
","none","500","500","500","test","","","","" -"465","66","stroop","stim","poldrack-categorize","193","226528","0.0-192.0","","
BLUE
","66,71,82","465","465","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","194","227279","0.0-193.0","","
+
","none","500","500","500","test","","","","" -"404","82","stroop","stim","poldrack-categorize","195","228693","0.0-194.0","","
GREEN
","66,71,82","404","404","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","196","229445","0.0-195.0","","
+
","none","500","500","500","test","","","","" -"519","66","stroop","stim","poldrack-categorize","197","230972","0.0-196.0","","
BLUE
","66,71,82","519","519","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","198","231724","0.0-197.0","","
+
","none","500","500","500","test","","","","" -"447","66","stroop","stim","poldrack-categorize","199","233174","0.0-198.0","","
BLUE
","66,71,82","447","447","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","200","233926","0.0-199.0","","
+
","none","500","500","500","test","","","","" -"481","82","stroop","stim","poldrack-categorize","201","235413","0.0-200.0","","
RED
","66,71,82","481","481","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","202","236164","0.0-201.0","","
+
","none","500","500","500","test","","","","" -"566","66","stroop","stim","poldrack-categorize","203","237734","0.0-202.0","","
GREEN
","66,71,82","566","566","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","204","238486","0.0-203.0","","
+
","none","500","500","500","test","","","","" -"560","71","stroop","stim","poldrack-categorize","205","240050","0.0-204.0","","
GREEN
","66,71,82","560","560","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","206","240802","0.0-205.0","","
+
","none","500","500","500","test","","","","" -"1518","71","stroop","stim","poldrack-categorize","207","243324","0.0-206.0","","
BLUE
","66,71,82","1518","1518","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","208","244076","0.0-207.0","","
+
","none","500","500","500","test","","","","" -"504","82","stroop","stim","poldrack-categorize","209","245585","0.0-208.0","","
GREEN
","66,71,82","504","504","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","210","246336","0.0-209.0","","
+
","none","500","500","500","test","","","","" -"726","66","stroop","stim","poldrack-categorize","211","248067","0.0-210.0","","
RED
","66,71,82","726","726","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","212","248819","0.0-211.0","","
+
","none","500","500","500","test","","","","" -"426","66","stroop","stim","poldrack-categorize","213","250257","0.0-212.0","","
GREEN
","66,71,82","426","426","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","214","251009","0.0-213.0","","
+
","none","500","500","500","test","","","","" -"618","82","stroop","stim","poldrack-categorize","215","252637","0.0-214.0","","
RED
","66,71,82","618","618","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","216","253389","0.0-215.0","","
+
","none","500","500","500","test","","","","" -"662","71","stroop","stim","poldrack-categorize","217","255055","0.0-216.0","","
GREEN
","66,71,82","662","662","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","218","255807","0.0-217.0","","
+
","none","500","500","500","test","","","","" -"1031","71","stroop","stim","poldrack-categorize","219","257848","0.0-218.0","","
BLUE
","66,71,82","1031","1031","250","test","false","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","220","258599","0.0-219.0","","
+
","none","500","500","500","test","","","","" -"432","82","stroop","stim","poldrack-categorize","221","260037","0.0-220.0","","
RED
","66,71,82","432","432","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","222","260788","0.0-221.0","","
+
","none","500","500","500","test","","","","" -"527","71","stroop","stim","poldrack-categorize","223","262323","0.0-222.0","","
RED
","66,71,82","527","527","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","224","263074","0.0-223.0","","
+
","none","500","500","500","test","","","","" -"718","82","stroop","stim","poldrack-categorize","225","264799","0.0-224.0","","
GREEN
","66,71,82","718","718","250","test","true","82","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","226","265550","0.0-225.0","","
+
","none","500","500","500","test","","","","" -"406","71","stroop","stim","poldrack-categorize","227","266961","0.0-226.0","","
RED
","66,71,82","406","406","250","test","true","71","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","228","267713","0.0-227.0","","
+
","none","500","500","500","test","","","","" -"467","66","stroop","stim","poldrack-categorize","229","269190","0.0-228.0","","
GREEN
","66,71,82","467","467","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","230","269942","0.0-229.0","","
+
","none","500","500","500","test","","","","" -"701","66","stroop","stim","poldrack-categorize","231","271657","0.0-230.0","","
RED
","66,71,82","701","701","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","232","272410","0.0-231.0","","
+
","none","500","500","500","test","","","","" -"430","66","stroop","stim","poldrack-categorize","233","273847","0.0-232.0","","
BLUE
","66,71,82","430","430","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","234","274599","0.0-233.0","","
+
","none","500","500","500","test","","","","" -"390","66","stroop","stim","poldrack-categorize","235","275996","0.0-234.0","","
RED
","66,71,82","390","390","250","test","true","66","500","incongruent" -"-1","-1","stroop","fixation","poldrack-single-stim","236","276748","0.0-235.0","","
+
","none","500","500","500","test","","","","" -"392","82","stroop","stim","poldrack-categorize","237","278145","0.0-236.0","","
RED
","66,71,82","392","392","250","test","true","82","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","238","278897","0.0-237.0","","
+
","none","500","500","500","test","","","","" -"329","71","stroop","stim","poldrack-categorize","239","280232","0.0-238.0","","
GREEN
","66,71,82","329","329","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","240","280983","0.0-239.0","","
+
","none","500","500","500","test","","","","" -"409","71","stroop","stim","poldrack-categorize","241","282397","0.0-240.0","","
GREEN
","66,71,82","409","409","250","test","true","71","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","242","283149","0.0-241.0","","
+
","none","500","500","500","test","","","","" -"477","66","stroop","stim","poldrack-categorize","243","284636","0.0-242.0","","
BLUE
","66,71,82","477","477","250","test","true","66","500","congruent" -"-1","-1","stroop","fixation","poldrack-single-stim","244","285388","0.0-243.0","","
+
","none","500","500","500","test","","","","" -"362","82","stroop","stim","poldrack-categorize","245","286761","0.0-244.0","","
RED
","66,71,82","362","362","250","test","true","82","500","congruent" -"9335","72","stroop","attention_check","attention-check","246","296348","0.0-245.0-0.0","","

Please read the following paragraph:

As Gregor Samsa awoke one morning from uneasy dreams he found himself transformed in his bed into a gigantic insect. Are you reading this paragraph? If so, press the key the letter that starts the next sentence. He was lying on his hard, as it were armor-plated, back and when he lifted his head a little he could see his dome-like brown belly divided into stiff arched segments on top of which the bed quilt could hardly keep in position and was about to slide off completely. His numerous legs, which were pitifully thin compared to the rest of his bulk, waved helplessly before his eyes. --Metamorphosis (Franz Kafka)

Press the ""A"" key.","","9335","9335","200","","true","72","","" -"1387","13","stroop","end","poldrack-text","247","297935","0.0-246.0","","","","","","","","","","","" diff --git a/expfactory/testing/run_tests.sh b/expfactory/testing/run_tests.sh index 63b4311..77fbc3b 100755 --- a/expfactory/testing/run_tests.sh +++ b/expfactory/testing/run_tests.sh @@ -11,4 +11,4 @@ if [ "$#" -ne 2 ]; then fi cd $TEST_RUN_FOLDER -nosetests --verbosity=3 --with-doctest --with-coverage --nocapture --cover-package=expfactory $TESTDIR/test_experiment.py $TESTDIR/test_battery.py $TESTDIR/test_vm.py $TESTDIR/test_views.py $TESTDIR/test_analysis.py +nosetests --verbosity=3 --with-doctest --with-coverage --nocapture --cover-package=expfactory $TESTDIR/test_experiment.py $TESTDIR/test_battery.py $TESTDIR/test_vm.py $TESTDIR/test_views.py diff --git a/expfactory/testing/test_analysis.py b/expfactory/testing/test_analysis.py deleted file mode 100644 index e301483..0000000 --- a/expfactory/testing/test_analysis.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/python - -""" -Test analysis functions -""" - -from expfactory.analysis.utils import load_result, clean_df -from expfactory.analysis.stats import compute_contrast -from expfactory.analysis.maths import check_numeric -from expfactory.utils import get_installdir -import pandas -import tempfile -import unittest -import shutil -import json -import os -import re - -class TestAnalysis(unittest.TestCase): - - def setUp(self): - self.pwd = get_installdir() - self.tmpdir = tempfile.mkdtemp() - self.csv = os.path.abspath("%s/testing/data/results/stroop_results.csv" %self.pwd) - self.json = os.path.abspath("%s/testing/data/results/jsPsychData.json" %self.pwd) - self.tsv = os.path.abspath("%s/testing/data/results/results_df.tsv" %self.pwd) - - def tearDown(self): - shutil.rmtree(self.tmpdir) - - def test_check_numeric(self): - not_numeric = ["hello","goodbye"] - numeric_float = [1.1,2.2,3.3] - numeric_int = [1,2,3] - not_numeric_mixed = ["hello",2,3.0] - self.assertTrue(check_numeric(numeric_float)) - self.assertTrue(check_numeric(numeric_int)) - self.assertTrue(check_numeric(not_numeric)==False) - self.assertTrue(check_numeric(not_numeric_mixed)==False) - - def test_load_result(self): - df = load_result(self.csv) - self.assertTrue(isinstance(df,pandas.DataFrame)) - df = load_result(self.json) - self.assertTrue(isinstance(df,pandas.DataFrame)) - df = load_result(self.tsv) - self.assertTrue(isinstance(df,pandas.DataFrame)) - - def test_clean_df(self): - df = load_result(self.csv) - df = clean_df(df) - self.assertTrue(df.isnull().any().any()==False) - - def test_compute_contrast(self): - df = load_result(self.csv) - df = clean_df(df) - result = compute_contrast(df,ind_var="condition",dep_var="rt") - self.assertTrue(isinstance(result,dict)) - self.assertTrue(len([x for x in ["plot","pval_two_tailed","tstat"] if x in result.keys()])==3) - -if __name__ == '__main__': - unittest.main() diff --git a/expfactory/testing/test_vm.py b/expfactory/testing/test_vm.py index 536c254..bcedd4c 100644 --- a/expfactory/testing/test_vm.py +++ b/expfactory/testing/test_vm.py @@ -51,11 +51,11 @@ def test_jspsych_init(self): self.assertTrue(re.search("expfactory_finished",init)) self.assertTrue(re.search("jsPsych.init",init)) - init = get_jspsych_init(self.config[0],deployment="docker") + init = get_jspsych_init(self.config[0],deployment="docker-mturk") self.assertTrue(re.search("{{next_page}}",init)) self.assertTrue(re.search("jsPsych.init",init)) - init = get_jspsych_init(self.config[0],deployment="docker-preview") + init = get_jspsych_init(self.config[0],deployment="docker-local") self.assertTrue(re.search("test_task_experiment",init)) self.assertTrue(re.search("jsPsych.init",init)) diff --git a/setup.py b/setup.py index eafbaf7..3b5fad4 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ name="expfactory", # Version number (initial): - version="2.4.1", + version="2.4.2", # Application author details: author="Vanessa Sochat", @@ -25,7 +25,7 @@ # Details url="http://www.github.com/expfactory", - license="LICENSE.txt", + license="LICENSE", description="Python module for managing experiment factory experiments, for deployment to a psiturk battery or docker container.", keywords='psiturk behavior neuroscience experiment factory docker',